*,html {
    margin: 0;
    padding: 0;
}

.container {
    background-image: url(colorful-comic-halftone-background-free-vector.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.navbar {
    width: 100%;
    height: 150px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}


.ul-navbar {
    display: flex;
    height: 55px;
    justify-content: center;
    align-items: center;  
}

.li-navbar {
    list-style-type: none;
    padding: 10px;
    margin: 10px;
    color: white;
    font-size: 25px;
}

.li-navbar:hover {
    background-color: rgba(158, 158, 158, 0.734);
    transition: .1s ease-in-out;
    transition-delay: .2s;
    border-radius: 8px;
}

.a-navbar {
    color: rgb(0, 0, 0);
    text-decoration: none;
    font-weight: 800;
}

.container-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 80vh;
}

.a-content {
    width: 380px;
    height: 250px;
    background-color: rgba(213, 213, 213, 0.308);
    text-decoration: none;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    text-align: center;
    align-items: center;
    border-radius: 80px;
    box-shadow: 0 0 8px;
}

.content {
    width: 50%;
    height: 50%;
}

.container-content a {
    text-decoration: none;
    color: rgb(0, 0, 0);
}

.footer {
    background-color: rgba(0, 0, 0, 0.145);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.isi-footer {
    font-size: 29px;
    color: white;
}