#home-container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  width: 100%;
  height: 100%;
  padding-top: 3rem;
  margin-bottom: 3rem;
}

#text-container {
  display: flex;
  align-items: center;
  max-width: 30rem;
}

#text-container h1 {
  font-size: clamp(2rem, 3vw, 3rem);
  margin-left: -0.2rem;
}

#text-container p {
  text-align: left;
  font-size: clamp(0.875rem, 1.5vw, 1.125rem);
  line-height: 150%;
  margin-bottom: 1.375rem;
}

#home-img img {
  max-width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  #home-container {
    flex-direction: column-reverse;
    align-items: center;
    gap: 0;
  }

  #text-container  h1 {
    text-align: center;
    margin-top: 1.5rem;
  }

  #text-container p {
    text-align: center;
  }

  #home-img {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  #home-img img {
    max-width: 75%;
    height: auto;
  }
  
  .btn {
    display: block;
    margin: 0 auto;
    max-width: 140px;
  }
}
