/* === Home Page Styles === */
.home-container {
  min-height: 80vh;
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 2rem auto;
  justify-content: space-around;
}

.home-container h1 {
  text-align: left;
  font-size: 4rem;
  margin: 0;
}

.home-container h2 {
  text-align: left;
  font-size: 2rem;
  margin: 0;
}

.home-img {
  background-color: #e0e0e0;
  padding: 1rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: auto;
}

.img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;

}

#home-img {
    width: 100%;
    max-width: 40rem;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

/* === Home Mobile Styles === */
@media screen and (max-width: 768px) {
  .home-container {
    grid-template-columns: auto;
    height: auto;
    flex-direction: column;
  }

  .home-content {
    text-align: center;
    margin-bottom: 1rem;
  }

  .home-container h1 {
    font-size: 3rem;
  }

  .home-container h2 {
    font-size: 2.5rem;
  }

  .home-img {
    width: 80%;
    margin: 0 auto;
  }

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