*,
html {
    margin: 0;
    padding: 0;
}

body {
    background-color: rgb(112, 169, 255);
}

.container-navbar {
    width: 100%;
    height: 30vh;
}

.ul-navbar {
    background-color: rgb(0, 123, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
}

.a-navbar {
    color: greenyellow;
    text-decoration: none;
}

.ul-akun {
    display: flex;
    justify-content: end;
    list-style-type: none;
}

.ul-akun1 {
    border-radius: 2px solid rgba(0, 0, 0, 0.464);
    color: rgb(250, 251, 250);
    margin: 2px;
    padding: 5px;
}

.ul-akun1:hover {
    background-color: rgb(0, 132, 255);
    transition: .5s ease-in-out;
    transition-delay: .1s;
    border-radius: 10px;
}

.a-akun {
    color: rgb(255, 255, 255);
    text-decoration: none;
}

.a-akun:hover {
    color: rgb(0, 24, 76);
    transition: .5s ease-in-out;
    transition-delay: .1s;
}

.container-content {
    background-color: rgb(112, 169, 255);
    display: flex;
    justify-content: center;
    height: 70vh;
    width: 100%;
    align-items: center;
}

.img-content {
    height: 200px;
    width: 200px;
}

.container-footer {
    background-color: rgb(0, 123, 255);
    justify-content: center;
    display: flex;
    align-items: center;
    height: 10vh;
}

.footer-footer {
    font-size: 20px;
    color: greenyellow
}