#hero {
  margin-bottom: 150px;
}

#hero__title {
  font-size: clamp(1.5rem, 10vw, 40px);
  font-weight: 600;
  margin-bottom: 20px;
}

#hero p {
  flex: 0.7;
  font-size: 18px;
  margin-bottom: 7px;
}

#hero__img {
  height: 240px;
}

#tanningbeds {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
  margin-bottom: 150px;
}

.tanningbeds__container {
  display: flex;
  justify-content: space-between;
  text-align: center;
  gap: 150px;
}

.tanningbeds__container:last-of-type {
  justify-content: center;
}

.tanningbeds__container article {
  width: 40%;
}

.tanningbeds__container article h2 {
  font-size: 32px;
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 20px;
}

.tanningbeds__container img {
  width: 100%;
  border-radius: 1rem;
}

.tanningbeds__warning {
  font-size: 15px;
  text-align: center;
  margin-bottom: 50px;
}

@media screen and (max-width: 768px) {
  #hero {
    margin-bottom: 70px;
  }

  #hero__img {
    height: 70px;
  }

  .tanningbeds__container {
    flex-direction: column;
    gap: 50px;
  }

  .tanningbeds__container article {
    width: 100%;
  }
}
