.header {
  height: 100px;
}

.header__title {
  font-family: JetBrains, sans-serif;
  font-size: 60px;
  color: #7f180d;
  text-align: center;
  font-weight: normal;
}

.main {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section__slider {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* position: relative; */
  width: 900px;
  height: 600px;
  gap: 20px;
}

.section__slider-title {
  font-family: GreatVibes, sans-serif;
  font-size: 64px;
  color: #e8b6a0;
}

.section__slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s ease;
  box-shadow: 10px 5px 5px #540f08;
  object-fit: contain;
}

.section__slider img.show {
  opacity: 1;
}

.section__slider-text {
  font-size: 48px;
  font-family: GreatVibes, sans-serif;
  color: #e8b6a0;
}

.main__paragraph {
  font-family: JetBrains, sans-serif;
  font-size: 60px;
  color: #7f180d;
  text-transform: uppercase;
  margin-top: 250px;
}