*,
html {
    margin: 0%;
    padding: 0%;
}

.container{}

.container-navbar {
    background-color: rgb(255, 255, 255);
    width: 100%;
    height: 10vh;
}

.ul-navbar {
    display: flex;
    justify-content: right;
    align-items: center;
    height: 75px;
    background-color: rgb(255, 255, 255);
}

.li-navbar {
    list-style-type: none;
    padding: 10px;
    margin: 3px;
    color: gray ;
}

.a-navbar {
    color: gray;
    text-decoration: none;
    font-weight: 700;
}

.li-navbar:hover{
    background-color: black;
    transition: .3s ease-in-out ;
    transition-delay: .2s;
    border-radius: 10px;
}

#biodata {
    width: 500px;
    height: 500px;
    background-color: #fcfff3;
}

.container-content {
    background-color: rgb(255, 255, 255);
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80vh;
}

.container-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 10vh;
}

.p-footer{

}

.a-content{
     color: gray;
    text-decoration: none;
    font-weight: 700;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-evenly;
    width: 720px;
    height: 480px;
}

