
@import url('https://fonts.googleapis.com/css2?family=Edu+AU+VIC+WA+NT+Hand:wght@400..700&family=Poppins:ital,wght@0,200;0,300;0,500;1,400&display=swap');

body{
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    background-image: url('background.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    font-family: "Poppins", sans-serif;
}
.main{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.navbar{
    background-color: rgba(255, 255, 0, 0.445);
    width: 95%;
    height: 10%;
    display: flex;
    align-items: center;
    border-radius: 15px;
    margin-top: 5px;
    margin-bottom: 5px;
    justify-content: space-between;
    font-size: 1.2rem;
}
.navbar ul {
    overflow: hidden;
    min-height: inherit;
    margin: 0;
    padding: 0 0px;
    border-radius: 15px;
    
}
.navbar li {
    float: left;
    list-style: none;
}



.navbar li a{
    padding: 15px;
    text-decoration: none;
    color: black;
    display: inline-block;
    transition: all 0.5s;
}

.navbar li a:hover{
    text-decoration: underline;
    background-color:  #e4474769;
    text-shadow: 0 0 3px #ee0202ab;
}


.active{
    font-weight: bold;
    background-color: #e4474769;
}


.content{
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 85vh;
    background-color: rgba(255, 255, 0, 0.445);
    border-radius: 15px;
    width: 95%;
}

.content img{
    height: 200px;
    width: 200px;
    margin: 10px;
    border: 2px solid rgba(3, 1, 1, 0.678);
    border-radius: 50%;
    transition: all 0.5s;
}

.content img:hover{
    transform: scale(1.1);
}

.profile{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.footer{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1em;
    font-weight: bold;
    font-style: italic;
    text-shadow: 0 0 3px #ee2502c0;
}