body{
    background-color:var(--background-1);
}
#loading{
    width: 100%;
    height: 100%;
    background-color: var(--loading-background);
    backdrop-filter: blur(5px); 
    -webkit-backdrop-filter: blur(5px); 
    top: 0px;
    z-index: 100;
}

.loading-content{
    height: 100%;
    width: 100vh;
    justify-content: center;
}

.loading-content img{
    height: 15vh;
    width: 15vh;
    margin-top: 40%;
}

.nav{
    background-color: var(--background-2);
    height: 8.5svh;
    width: 100%;
    box-shadow: rgba(0, 0, 0, 0.1) 0px 10px 50px;
    z-index: 1;
}

.nav-wrapper{
    width: 100%;
    height: 100%;
    padding-left: 20px;
    padding-right: 20px;
    justify-content: space-between;
}

.nav-logo{
    display: block;
    height: 90%;
    width: 120px;
    background-image: url('../assets/images/logo.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    text-decoration: none;  
}

.nav-links{
    height: 90%;
    justify-content: space-between;
    color: var(--nav-font-color);
}

.nav-link:hover{
    color: var(--accent-1);
    cursor: pointer;
}

.nav-link{
    padding: 0 10px;
    height: 60%;
    padding-bottom: 10px;
    margin-right: 30px;
}

.nav-link-text{
    font-size: 18px;
    font-weight: bold;
    height: 73%;
    align-items: end;
    padding: 0 5px;
    margin-top: auto;
}

.nav-link-line{
    background-color: var(--background-2);
    height: 9%;
    width: 100%;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-top: 5px;
}

.nav-link:hover .nav-link-line,
.active-nav-link .nav-link-line{
    background-color: var(--accent-2);
}

.nav-link:hover,
.active-nav-link{
    color: var(--accent-1);
}

.nav-right{
    width: 170px;
}

.sendmail{
    width: 70px;
    height: 35px;
    border-radius: 30px;
    border: 1px solid var(--accent-2);
    cursor: pointer;
    align-items: center;
    padding: 0 25px;
    color: var(--accent-2);
    overflow: hidden;
}

.sendmail:hover{
    background-color: var(--accent-2);
    color: var(--background-1);
    width: 100px;
}

.sendmail-text{
    font-size: 16px;
    
}

.sendmail-icon{
    width: 20px;
    height: 20px;
    right: -30px;
}

.sendmail-svg{
    stroke: aliceblue;
}

.sendmail:hover .sendmail-icon{
    right: 10px;
}