* {
    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%;
    font-size: 100px;
    white-space: nowrap;
    font-family: gilroy;
}

#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;
    background: #7c7c7c24;
    backdrop-filter: blur(20px);
}

#nav>h3 {
    font-family: gilroy;
    font-weight: 400;
    font-size: 22px;
}

.nav-links>a {
    padding: 10px 20px;
    margin-left: 10px;
    border-radius: 50px;
    background-color: #7c7c7c24;
    color: #030303;
    border: none;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;

    &:hover {
        background-color: #000;
        color: #f1f1f1;
    }
}

#logo{
    font-weight: 500;
}

#logo-name{
    font-weight: 600;
}

#page>h3 {
    position: absolute;
    top: 58%;
    font-family: gilroy;
    font-weight: 400;
    color: #7c7c7c;
    left: 5%;
}

#page>h4 {
    position: absolute;
    top: 70%;
    left: 10%;
    font-family: gilroy;
    font-weight: 500;
}

#name {
    position: absolute;
    margin-top: 5px;
    right: 12%;
}

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

#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: 50%;
    right: 5%;
    text-align: end;
}

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

#page1>#left-text>h3 {
    color: #7c7c7c;
    font-weight: 400;
}

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

#page2>#text1>h3 {
    color: #7c7c7c;
    font-weight: 400;
}

#page2>#text1>h1 {
    font-size: 40px;
    line-height: 1.5;
}

#page2>#text2 {
    position: absolute;
    top: 38%;
    right: 6%;
    text-align: end;
    text-align: start;

}


.item>p,
.item>ul>li {
    color: #4d4d4d;
    font-weight: 400;
    list-style: none;
    margin: 5px 0;

}

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

#page3>#text3>p {
    font-size: 20px;
    color: #7c7c7c;
    font-weight: 400;
    font-family: cursive;
}

#page3>#text3>h1 {
    font-size: 30px;
    margin-bottom: 10px;
}

