* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  width: 100%;
  background-color: #0e0e0e;
}

html {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  color: wheat;
}

main {
  width: 100%;
}

.view1 {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 4rem;
}
.view1 h1 {
  font-size: 4rem;
  text-align: center;
  font-weight: 100;
}
.view1 br {
  display: none;
}
.view1 img {
  width: 80%;
  -o-object-fit: cover;
     object-fit: cover;
}
.view1 p {
  text-align: center;
  line-height: 1.6;
  font-size: 1.2rem;
  margin: 0.9rem 0;
  opacity: 0.6;
  font-weight: 100;
}

.view2 {
  width: 100%;
  padding: 4rem 3rem;
  display: flex;
  justify-content: center;
}
.view2 .marque {
  display: flex;
  width: 100%;
  overflow: hidden;
  position: relative;
  /*&::after{
      content: "";
      height: 100%;
      width: 50%;
      position: absolute;
      top: 0;
      right: 0;
      background-image: linear-gradient(to left, #0e0e0e, transparent);
  }

  &::after{
      content: "";
      height: 100%;
      width: 50%;
      position: absolute;
      top: 0;
      left: 0;
      background-image: linear-gradient(to right, #0e0e0e, transparent);
  }*/
  /* Right gradient */
}
.view2 .marque::before {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  left: 0;
  background-image: linear-gradient(to right, #0e0e0e, transparent);
  z-index: 1; /* Ensures it overlays the scrolling text */
}
.view2 .marque::after {
  content: "";
  height: 100%;
  width: 50%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: linear-gradient(to left, #0e0e0e, transparent);
  z-index: 1; /* Ensures it overlays the scrolling text */
}
.view2 .marque .text {
  display: flex;
  gap: 3rem;
  padding: 0 1.5rem;
  animation: marque 10s linear infinite both;
}
.view2 .marque .text p {
  font-size: 1.7rem;
  font-weight: 200;
}

@keyframes marque {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (min-width: 1020px) {
  html {
    font-size: clamp(16px, 1vw, 20px);
    color: wheat;
  }
  .view1 img {
    width: 28%;
  }
  .view1 h1 {
    font-size: 3.6rem;
  }
  .view1 p {
    font-size: 1rem;
  }
  .view1 p br {
    display: block;
  }
  .view2 .marque {
    width: 50%;
  }
}/*# sourceMappingURL=style.css.map */