body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Ikaros-Sans";
    overflow-x: hidden;
}

nav{
    display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: rgba(0, 0, 0, 0);
    font-family: 'Poppins', sans-serif;
}

.logo {
    color: rgb(226, 226, 226);
    text-transform: uppercase;
    letter-spacing: 5px;
    font-size: 20px;
}

/* Shown NavLinks */
.nav-links {
    display: flex;
    justify-content: space-around;
    width: 30%;
}

.nav-links li{
    list-style: none;
}

.nav-links a{
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 2px;
    font-weight: bold;
    font-size: 16px;
    transition: text-shadow 0.5s;
}

.nav-links a:hover {
    text-shadow: 0 0 20px  #008aff;
}
/*Hidden Nav Links*/
.nav-links-1 {
    position: absolute;
    right: 0px;
    height: 100vh;
    top: -2.2vh;
    background-color: rgba(0, 0, 0, 0.8);

    /*animation of Black Body*/
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 25vw;
    padding: 12.5vh 2.5vw;
    box-sizing: border-box;
    background: #000000;
    transform: translateX(100%);
    transition: 0.35s ease-in;

}

.nav-links-1 li{
    list-style: none;
    opacity: 0;
}

.nav-links-1 a{
    color: rgb(226, 226, 226);
    text-decoration: none;
    letter-spacing: 3px;
    
    font-size: 24px;

    transition: text-shadow 0.5s;
}
.nav-links-1 a:hover {
    text-shadow: 0 0 20px  #008aff;
}

.burger{
    display: block;
    cursor: pointer;
}

.burger div{
    display: block;
    width: 48px;
    height: 2px;
    /*background-color: rgb(226, 226, 226);*/
    margin: 6px;
    border-right: 34px solid #fff;
    border-left: 8px solid #d6d6d6;
    box-sizing: border-box;

    /*For smooth movement of Hamburger*/
    transition:  all 0.3s ease;
}

.burger div {
    border-right-color: #e9b8b9;
    text-shadow: 0 1px 10px 0 rgba(205, 40, 44, 0.75);
}

.burger .line2{
    display: block;
    width: 48px;
    height: 2px;
    /*background-color: rgb(226, 226, 226);*/
    margin: 11px;
    border-right: 8px solid #fff;
    border-left: 34px solid #d6d6d6;
    box-sizing: border-box;
    transition:  all 0.3s ease;
}

.burger .line3 {
    border-right-color: #ddf1da;
    text-shadow: 0 1px 10px 0 rgba(83, 228, 68, 0.65);
}
/*@media screen and (max-width: 1200px){
    .nav-links-1 {
        width: 60%;
    }
}

@media screen and (max-width: 992px){
    .nav-links-1 {
        width: 60%;
    }
}

@media screen and (max-width: 768px){
    
    body{
        overflow-x: hidden;
    }

    .nav-links-1 {
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 8vh;
        background-color: rgba(0, 0, 0, 0.8);

        
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: 0.5s ease-in;
    }
    .nav-links-1 li{
        opacity: 0;
    }
    .burger{
        display: block;
    }
}*/

/*animation of hamburger*/
.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 0;
        transform: translateX(50px);
    }
    to{
        opacity: 1;
        transform: translateX(0px);
    }
}

/*Hamburger animation*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}