*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

html,body{
    height: 100%;
    width: 100%;
    background-color: #0C1318;
}
main{
    height:auto;
    width: 100%;
    overflow-x: hidden;
}
nav{
    position: fixed;
    width: 100%;
    display: flex;
    justify-content:center;
    align-items: center;
    z-index: 999;
    transition-duration:0.5s;
    transition-timing-function: all ease-out;
    background-color:transparent;
}

.nav{
    height: 100%;
    width:80%;
    padding:1% 2%;
    display: flex;
    justify-content:space-between;
    gap: 2vw;
    align-items: center;
    z-index:999;
}

.nl-img{
    height: 100%;
    width:auto;
    padding: 0.5% 1%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#nl img{
    height: 7vh;
    object-fit: cover;
    object-position: center;
    border-radius: 50%;
}

#nl{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2vw;
    position: relative;
}

#nr{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4vh;
    background-color: #00bcd4;
    padding: 1% 2%;
    border-radius: 50px;
}

#nr a{
    color: #1b2735;
    font-size: large;
    font-weight: 500;
    font-family: exo, sans-serif;
    text-decoration: underline;
    transition-duration:0.5s;
    transition-timing-function: all ease-out;
    font-weight: 800;
}

#nr a:hover{
    text-decoration: overline;
}

nav:hover{
    backdrop-filter: blur(10px);
}

#nr span{
    color:#dadada;
    font-weight: 900;
}

#menu{
    display: none;
    color: wheat;
    position: absolute;
    top: 20% ;
    right: 10%;
}

#ipage1{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10vh 0 0 0;
}
#ipage1 h1{
    font-size: 10vh;
    font-weight: 900;
    color: #00bcd4;
    font-family: orbitron, sans-serif;
}
#ipage2{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10vh 0 0 0;
}
#ipage2 h1{
    font-size: 10vh;
    font-weight: 900;
    color: #00bcd4;
    font-family: orbitron, sans-serif;
}
#ipage3{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 10vh 0 0 0;
    
}
#ipage3 h1{
    font-size: 10vh;
    font-weight: 900;
    color: #00bcd4;
    font-family: orbitron, sans-serif;
}
#pg1-container{
    height: 80%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5%;
    gap: 2%;
    
}
.img-box{
    height: 80vh;
    width: 25%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    border-radius: 20px;
}
.img-box h2{
    color: #00bcd4;
    font-size: 3vh;
    font-weight: 900;
    text-align: center;
    margin: 0;
    padding: 0.5vh 0;
    font-family: exo, sans-serif;

}
.img-box img{
    height: 60%;
    width:100%;
    object-fit: cover;
    object-position: top;
    border-radius: 20px;
}
#line{
    height: 0.1vh;
    width: 100%;
    background-color:#00bcd4;
    border-radius: 50%;
}
@media only screen and (max-width: 1200px){
    .nav{
        width: 100%;
    }
    #nr{
        width: 50%;
        gap: 1vh;
    }
    #nl{
        width: 50%;
        padding: 0;
        justify-content: start;
    }
    #nl img{
        padding:0;
    }
    #nr a{
        font-size:3vw;
        color: #1b2735;
    }
    #ipage1 h1{
        height: fit-content;
        font-size: 4vh;
        padding: 0;
    }
    #ipage2 h1{
        height: fit-content;
        font-size: 4vh;
        padding: 0;
    }
    #ipage3 h1{
        height: fit-content;
        font-size: 4vh;
        padding: 0;
    }
    #ipage1{
        height: auto;
        width: 100%;
        padding: 20% 0 0 0;
        overflow-x: scroll;
    }
    #ipage2{
        height: 100%;
        width: 100%;
        padding: 20% 0 0 0;
    }
    #ipage3{
        height: 100%;
        width: 100%;
        padding: 20% 0 0 0;
    }
    #pg1-container{
        height: auto;
        width: 100%;
        padding: 5% 0;
        overflow-x: scroll;
        white-space: nowrap;

    }
    .img-box{
        width: 50%;
        height:auto;
        margin: 2vh 0;
        flex-shrink: 0;
        transform: translateX(80vw);
    }
    .img-box img{
        height: 15vh;
        width: 100%;
    }
    .img-box h2{
        font-size:1.5vh;
    }
    #line{
        width: 60%;
    }
}