*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: gilroy;
}

html,body{
    height: 100%;
    width: 100%;
}
#main{
    position: relative;
    overflow :hidden;
}
#page{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}
#page1{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}
#page2{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}
#page3{
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}
canvas{
    position: relative;
    z-index: 9;
    max-width: 100vw;
    max-height: 100vh;
}
#loop{
    display: flex;
    position: absolute;
    top: 30%;
    height: 25%;
    width: 100%;
    /* background-color: #898989; */
    font-size: 100px;
    white-space: nowrap;
    font-family: gillroy;
}
#loop>h1{
font-weight: 400;
animation-name: anime;
animation-duration: 20s;
animation-timing-function:linear;
animation-iteration-count: infinite;
}
#loop>h1>span{
    
    -webkit-text-stroke: 1.2px #000; /* it will color the shadow of the text*/
    color: transparent; /*and it will make the origanl color of text into transparent*/
}
@keyframes anime{
    0%{
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}
#nav{
    display: flex;
    align-items: center;
    justify-content:space-between ;
    height: 7%;
    width: 100%;
    /* background-color: #4fe695; */
    position: fixed;
    z-index: 1;
    padding: 0px 30px;
}
#nav>h3{
    font-family: gilroy;
    font-weight: 500;
    font-size: 22px;
}
#nav>button{
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    background-color: #000;
    color: aliceblue;
}
#nav>button:hover{
    background-color: aliceblue;
    color: #000;
}
/* Updating Page */
#page>h3{
    position: absolute;
    top:55%;
    font-family: gilroy;
    font-weight: 400;
    color: #7c7c7c;
    left:5%;
}
#page>h4{
    position: absolute;
    top: 62%;
    left: 25%;
    font-weight:500;

}
/* Updating Page1 */
#page1>#right-text{
    position: absolute;
    top: 30%;
    left: 10%;
}
#page1>#right-text>h3{
    font-weight: 400;
    color: #7c7c7c;
}
#page1>#right-text>h1{
   line-height: 1.5;
   font-size: 40px;
}
#page1>#left-text{
    position: absolute;
    top: 55%;
    right: 10%;
    text-align: end;
}
#page1>#left-text>h1{
    font-size: 50px;
    line-height: 1.5 ;

}
#page1>#left-text>h3{
    color: #7c7c7c;
    font-weight: 400;
}
/* Updating Page2 */
#page2>#right-text{
    position: absolute;
    top: 30%;
    left: 10%;
}
#page2>#right-text>h3{
    color: #7c7c7c;
    font-weight: 400;
    line-height: 1.5;
}
#page2>#right-text>h1{
    font-size: 60px;
    line-height: 1.5;
}
#page2>#left-text{
    position: absolute;
    top:55%;
    right:10%;
    font-size: small;
    text-align: end;
}

/* Updating Page 3 */
#page3>#right-text{
    position: absolute;
    top: 30%;
    left: 10%;
    line-height: 1.5;
    font-weight: 600;
    font-size: small;
}

#page3>#left-text{
    position: absolute;
    top: 55%;
    right: 10%;
    line-height: 1.5;
    text-align: end;
}
#page3>#left-text>h1{
    
    font-size: 4rem;
}
#page3>#left-text>h3{
   color: #7c7c7c;
   font-weight: 400;
}

#page1>#right-text>h1>span:hover{
    color: aqua;
    /* background :transparent; */
}