.hero2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  background-color: #f8f8f8;
}

.hero__image2 {
  border: none;
  border-radius: 2rem;
}

.hero__title2 {
  margin: 1rem;
}

.hero__subtitle2 {
  margin: 1rem;
  font-size: 1.2rem;
}

.hero__button2 {
  border: none;
  padding: 0.75rem 1.5rem;
  border-radius: 0.5rem;
  cursor: pointer;
  background-color: #ffffff;
  font-weight: bold;
}

.hero__button2:hover {
  background-color: var(--color-cream);
}

@media (width > 40rem) {
    .hero2 {
        display: flex;
        flex-direction: row-reverse;
        justify-content: center;
        align-items: center;
        gap: 10rem;
    }

    .hero__container2 {
        display: flex;
        flex-direction: column;
    }

    .hero__title2 {
        margin: 2rem;
        text-align: left;
        font-size: 3rem;
    }

    .hero__subtitle2 {
        margin: 0rem 2rem 2rem 2rem;
        padding: 0rem 2rem 0rem 0;
        text-align: left;
        width: 35rem;
    }

    .hero__button2 {
        display: inline-block;
        margin-left: 2rem;
        width: 15rem;
    }

    .hero__image2 {
        width: 35rem;
    }
}