@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
*{
    margin: 0%;
    padding: 0%;
    box-sizing: border-box;
    font-family: 'Gilroy-Medium';
}

html, body {
    height: 100%;
    width: 100%;
}

#main {
    position: relative;
    overflow: hidden;
}

#page {
    position: relative;
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}

#page1 {
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}

#page2 {
    height: 100vh;
    width: 100vw;
    background-color: #f1f1f1;
}

#page3 {
    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%;
    font-size: 100px;
    white-space: nowrap;
    font-family: 'Gilroy-Medium';

}

#loop>h1 {
    font-weight: 400;
    animation-name: anim;
    animation-duration: 15s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}

#loop>h1>span {
    -webkit-text-stroke: 1.2px #000;
    color: transparent;
    font-weight: 500;
}

@keyframes anim {
    0% {
        transform: translateX(0%);
    }
    100%{
        transform: translateX(-100%);
    }
}

#nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7%;
    width: 100%;
    position: fixed;
    z-index: 99;
    padding: 0px 30px;
    top: 1%;
}

#nav>h3 {
    font-family: 'Gilroy-Regular';
    font-weight: 400;
    font-size: 28px;
    margin-left: 20px;
}

#nav>#caution {
    display: flex;
    align-items: center;
    /* width: 450px; */
    height: 100%;
}

#nav>#caution>p {
    font-size: 16px;
    font-family: 'Gilroy-Regular';
    font-weight: 500;
}

#nav>#caution>button {
    padding: 10px 20px;
    border-radius: 50px;
    background-color: #000;
    color: #fff;
    border: none;
    font-size: 15px;
    font-family: 'Gilroy-Regular';
    letter-spacing: 1px;
    margin-left: 15px;
    margin-right: 20px;
}

#page>h3 {
    position: absolute;
    top: 66%;
    font-family: 'Gilroy-Medium';
    font-weight: 200;
    /* letter-spacing: 1px; */
    line-height: 1.4;
    color: #7c7c7c;
    left: 6%;
    font-size: 15px;
}

#page>h4 {
    position: absolute;
    top: 71%;
    font-family: 'Gilroy-Medium';
    font-weight: 600;
    right: 10%;
    font-size: 15px;
    letter-spacing: 2px;
}

#page1>#left-text{
    position: absolute;
    top: 30%;
    left: 10%;
}

#page1>#left-text>h3{
    color: #7c7c7c;
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 15px;
}

#page1>#left-text>h1{
    line-height: 1.4;
    font-size: 60px;
}

#page1>#right-text{
    position: absolute;
    top: 50%;
    right: 10%;
    text-align: end;
}

#page1>#right-text>h1{
    font-size: 45px;
    line-height: 1.4;
}

#page1>#right-text>h3{
    color: #7c7c7c;
    letter-spacing: 3px;
    font-weight: 400;
    font-size: 15px;
}

#page2>#text1{
    position: absolute;
    top: 30%;
    left: 10%;
}

#page2>#text1>h3{
    color: #7c7c7c;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 15px;
}

#page2>#text1>h1{
    font-size: 60px;
    line-height: 1.4;
}

#page2>#text2{
    position: absolute;
    top: 55%;
    right: 10%;
    text-align: end;
}

#page2>#text2>p{
    color: #7c7c7c;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.5;
    font-size: 14px;
}

#page3>#text3{
    position: absolute;
    top: 40%;
    right: 10%;
    text-align: end;
}

#page3>#text3>h3{
    color: #7c7c7c;
    font-weight: 400;
    letter-spacing: 3px;
    font-size: 15px;
}

#page3>#text3>h1{
    font-size: 60px;
}