*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins",sans-serif;
}
html,body{
height: 100%;
width: 100%;
}
#main{
    position: relative;
    overflow: hidden;
}
#page1{
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
    position: relative;
  
}
#page2{
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
    position: relative;
   
}
#page3{
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
    position: relative;
   
}
#page4{
    height: 100vh;
    width: 100vw;
    background-color:#f1f1f1;
    position: relative;
   
}
canvas{
    max-width: 100vw;
    max-height: 100vh;
    position: relative;
    z-index: 9;
}
#marquee{
    display: flex;
    height: 20%;
    width: 100%;
    /* background-color: #c01717; */
    position: absolute;
    z-index: 7;
    top: 30%;
    white-space: nowrap;
}
#marquee>h1{
    font-size: 100px;
    font-weight: 400;
    font-family: "Poppins",sans-serif;;
    animation-name: loop;
    animation-duration: 12s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
#marquee>h1>span{
    color: transparent;
    -webkit-text-stroke: 2px #000;
}
@keyframes loop {
    0%{
        transform: translateX(0);
    }
    100%{
        transform: translateX(-100%);
    }
}
#nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
    position: fixed;
    gap: 70vw;
    z-index: 8;
} 
#nav>h1{
    font-size: 27px;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
}
#nav>h1>span{
    -webkit-text-stroke: 1px #000;
    color: transparent;
    font-weight: 200;
}
#nav>button{
    padding: 10px 30px;
    border-radius: 50px;
    border: none;
    background-color: #000;
    color: #fff;
}
#page1>h3{
    font-size: 17px;
    font-weight: 200;
    text-transform: uppercase;
    top: 55%;
    left: 4%;
    position: absolute;
}
#page2>#left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 30%;
    left: 10%;
    gap: 2rem;
}
#page2>#right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 30%;
    right: 10%;
    gap: 2rem;
}
#left h3{
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
}
#left h1{
    font-size: 45px;
    text-transform: uppercase;
    font-weight: 600;
}
#right h3{
    font-size: 17px;
    font-weight: 300;
    text-transform: uppercase;
}
#right h1{
    font-size: 35px;
    text-transform: uppercase;
    font-weight: 600;
}
#page3>#left{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 30%;
    left: 10%;
    gap: 2rem;
}
#page3>#right{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    position: absolute;
    bottom: 30%;
    right: 10%;
    gap: 2rem;
}
#page3>#right {
    text-align: end;
    top: 50%;
    position: absolute;
    right: 5%;
}
#page3>#right>h3{
    font-size: 15px;
}
#page4>#left{
    position: absolute;
    top: 30%;
    left: 5%;
}
#page4>#right{
    position: absolute;
    bottom: 30%;
    right: 10%;
}
#page4>#left>h3{
    font-size: 15px;
}