*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

/*Video Background*/

.vid-bg{
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
    z-index: -100;
}

/*Header*/

.fix{
    clear: both;
    overflow: hidden;
}

header{
    overflow: hidden;
    height: 100vh;
}

/*Navbar*/

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 4vh;
    background-color: #1c362e;
    opacity: 95%;
}

.logo{
    color: #f4dec9;
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
    font-family: Pontano Sans;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 60%;
    z-index: 100;
}

.nav-links li{
    list-style: none;
}


.nav-links a{
    color: lightgrey;
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    font-family: Pontano Sans;
    z-index: 100;
    letter-spacing: 3px;
}

.burger{
    display: none;
    cursor: pointer;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
}


@media screen and (max-width:1560px){
    .nav-links a{
        font-size: 10px;
    }
}


@media screen and (max-width:1280px){
    body{
        overflow-x: hidden;
    }

    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: #1c362e;
        display: none;
        flex-direction: column;
        align-items: center;
        width: 45%;
        transform: translateX(100%);
        transition: 0.5s ease-in;
        opacity: 95%;
    }

    .burger{
        display: block;
    }

}

.nav-active{
    transform: translateX(0%);
    display: flex;
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }


}





/*Profile*/

.profile{
    width: 200px;
    margin-left: 12.5%;
    height: 300px;
    background-color: #677068;
    position: absolute;
    opacity: 85%;
    text-align: center;
}

.circle{
    height: 150px;
    width: 150px;
    border-radius: 50%;
    background-color: grey;
    margin-left: 25px;
    margin-top: 20px;
    position: fixed;


}

.text-profile{
    margin-top: 100%;
    font-family: Pontano Sans;
    color: white;
    opacity: 80%;
}

a:hover {
    text-decoration: underline;
  }

#logo-link{
    text-decoration: none;
}

img{
    width: 100%;
    min-height: 100%;
    border-radius: 50%;
}

@media screen and (max-width:900px){
    .nav-links{
        font-size: 1px
    }
}

ul{
    z-index: 100;
}
