*{
    margin: 0;
    padding: 0;
}


.logo{
    width: 20%;
    padding-top: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.logo img{
    width: 30%;
    cursor: pointer;

}
.navbar{
    display: flex;
    align-items: center;
    justify-content: center;
    position: sticky;
    top: 0;
    background-color: black;
}
.nav-list{
    width: 89%;
    display: flex;
    align-items: center;
}
.nav-list li{
    list-style: none;
    padding: 26px 30px;
}
.nav-list li a{
    text-decoration: none;
    color: white;
    font-size: 12px;
    font-family: 'Roboto Mono', monospace;
}
.nav-list li a:hover{
    color: #e8ffeda2;
}

.rightNav{
    background-color: black;
    width: 11%;
    text-align: right;
    padding: 0 23px;
}
.btn{
    padding: 8px 20px;
    margin: 7px 0;
    border: 2px solid white;
    border-radius: 8px;
    background: none;
    color: white;
    cursor: pointer;
}
.main{
    display: flex;
}
.links{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87vh;
    width: 10%;
    top: 0;
    background-color: black;
}
.main-right{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 87vh;
    width: 10%;
    background-color: black;
}
.social-icon{
    color: white;
    font-size: 35px;
}
.main-box{
    align-items: center;
    color: white;
    justify-content: center;
    display: flex;
    height: 87vh;
    width: 90%;
    background-color: black;
}
.main-box h1{
    position: absolute;
    font-size: 70px;
    font-weight: 500;
    font-family: 'Shojumaru', sans-serif;
}

.back-text{
    /* transform: translate(-50%, -50%); */
    font-family: 'Rubik Microbe', sans-serif;
}
.back-text span{
    font-size: 250px;
    font-weight: 500px;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.3);
    -webkit-text-fill-color: transparent;
    transform: translateY(100px);
    opacity: 0;
    transition: transform 1s, opacity 0.5s, -webkit-text-stroke-color 0.5s;
}
.back-text span.active{
    transform: translateY(0px);
    opacity: 1;
}
.back-text span:nth-child(1){
    transition-delay: 0.5s;
}
.back-text span:nth-child(2){
    transition-delay: 1s;
}
.back-text span:nth-child(3){
    transition-delay: 1.5s;
}
.back-text span:nth-child(4){
    transition-delay: 2s;
}
.back-text:hover span{
    -webkit-text-stroke-color: #e8ffed;
}

.footer{
    background-color: black;
    height: 5vh;
    color: gray;
    font-size: 11px;
    font-family: Arial, Helvetica, sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
}

.burger{
    display: none;
    position: absolute;
    cursor: pointer;
    right: 5%;
    top: 15px;
}
.line{
    width: 33px;
    background-color: white;
    height: 4px;
    margin: 5px 3px;
}

@media only screen  and (max-width: 900px) {
    .nav-list{
        position: absolute;
        flex-direction: column;
    }
    .navbar{
        height: 100vh;
        flex-direction: column;
        background-color: black;
        transition: all 0.7s ease-out;
    }
    .rightNav{
        text-align: center;
    }
    .burger{
        display: block;
    }
    .h-nav-resp{
        height: 62px;
    }
    .v-class-resp{
        opacity: 0;
    }
    .main-resp{
        position: relative;
    }
    .links{
        height: 89vh;
    }
    .main-box{
        height: 89vh;
    }
    .main-right{
        height: 89vh;
    }
    .main-box h1{
        top: 33%;
    }
    .back-text{
        padding-top: 17%;
    }
    .logo img{
        width: 50%;
    }
}
@media only screen  and (max-width: 877px) {
    .back-text span{
        font-size: 121px;
    }
}
@media only screen  and (max-width: 438px) {
    .back-text span{
        font-size: 110px;
    }
}
@media only screen  and (max-width: 392px) {
    .back-text span{
        font-size: 100px;
    }
}