:root {
  --primary: rgb(97, 75, 75);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none;
  border: none;
  text-decoration: none;
}

.col-primary {
  background-color: var(--primary);
}

.col-red{
  color: rgb(249, 39, 39);
}

.bg-logo{
  text-shadow: 1px 1px 50px rgb(231, 45, 185);
}


.scroll {
  width: 100%;
  aspect-ratio: 8/15;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-padding-bottom: 20px;
}

.flex-set {
  display: block;
}

.scroll-text {
  width: 100%;
  aspect-ratio: 9/2;
  overflow-x: hidden;
  overflow-y: scroll;
  scroll-snap-type: y mandatory;
  scroll-padding-bottom: 20px;
  display: none;
}

.video-box{
  display: flex;
  justify-content: center;

}

.video-h {
  max-height: 400px;
  max-width: 100%;
}

.free-area {
  align-items: center;
}

/* Tablet */
@media (max-width: 991px) {
  html {
    font-size: 90%;
  }

  .scroll {
    width: 50%;
    aspect-ratio: 16/5;
    overflow-x: scroll;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-bottom: 20px;
  }

  .flex-set {
    display: flex;
  }

  .scroll-text {
    aspect-ratio: 3/1;
  }
}

/* Smartphone */
@media (max-width: 426px) {
  html {
    font-size: 80%;
  }

  .scroll {
    aspect-ratio: 13/5;
  }

  .scroll-text {
    aspect-ratio: 2/1;
  }
}
