/* Text Section */
.text {
  width: 30%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: calc(var(--body-font) * 0.5);
}

.text h2 {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: calc(var(--body-font) * 2);
  color: var(--purple);
  text-align: center;
}

.text p {
  font-family: "Sour Gummy", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: var(--purple);
  text-align: center;
  font-size: calc(var(--body-font) * 0.9);
}

/* Image Section */
.image {
  width: 35%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
}

.image img {
  width: 100%;
  bottom: var(--footer-height);
  position: relative;
}

/* Media Query for max-width 48em */
@media screen and (max-width: 48em) {
  .content {
    flex-direction: column;
    overflow-y: hidden;
    height: 100%;
  }

  .text {
    width: 90%;
    height: auto;
    padding-top: 0;
  }

  .image {
    width: 90%;
  }

  .image img {
    height: 100%;
    bottom: 0;
  }
}

/* Media Queries for larger screens (Empty for now) */
@media screen and (max-width: 64em) {}

@media screen and (min-width: 64em) {}
