
/* Modern CSS Reset */
:where(*, *::before, *::after) {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  min-height: 100vh;
  min-width: 100%;
  text-size-adjust: 100%;
  text-transform:uppercase;
  font-family: sans-serif;
  background-color: whitesmoke;
  overflow-x: hidden;
  overflow-y: scroll;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}

header nav{
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  position: fixed;
  z-index: 100;
  /* background-color: red; */
}
header nav .logo h1{
  font-weight: 400;
}
header nav .logo h1 strong{
  font-weight:700;
}
header nav .message{
  display: flex;
  align-items: center;
  gap: 10px;
}
header nav .message button{
  border-radius: 20px;
  padding: 7px 20px;
  background-color: black;
  color: white;
}


main{
    position: relative;
    overflow: hidden;
}

#page{
  position: relative;
    height: 100vh;
    width: 100vw;
}

.loop{
  position: absolute;
  /* background-color: red; */
  height: 150px;
  width: 100%;
  overflow: hidden;
  top: 35%;
  display: flex;
  gap: 20px;
}

.loop h1{
  font-size: 5.5rem;
  white-space: nowrap;

  font-weight: 400;
  animation: loop 10s linear infinite;
}
span{
  -webkit-text-stroke: 1.5px black;
  color: transparent;
}

#page .description{
  position: absolute;
  top:53%;
  left: 6%;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.05rem;
  font-weight: 400;
}

#page .text-scroll{
  position: absolute;
  top: 62%;
  left: 27%;
  font-size: 1rem;
  letter-spacing: 0.05rem;
}


canvas{
  display: block;
  position: absolute;
  max-height: 100vh;
  max-width: 100vw;
  z-index: 10;
}
#page1{
  position: relative;
    height: 100vh;
    width: 100vw;
}

 .left-side{
  position: absolute;
  top: 25%;
  left:9%;
}
 .small-text{
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.05rem;
}

 .big-text{
  font-size: 3rem;
  line-height: 1.1;

}

 .right-side{
  position: absolute;
  top: 50%;
  right: 9%;
  text-align: right;
}

#page2{
  position: relative;
    height: 100vh;
    width: 100vw;
    /* background-color: rgb(247, 97, 97); */
}


#page3{
  position: relative;
  height: 100vh;
  width: 100vw;
}



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