* {
  font-family: poppins;
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
  background-color: white;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  gap: 20px;
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  flex: 1;
  text-align: center;
  margin-top: 10%;
}

.hero-image {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex: 1;
}

.hero-image img {
  max-width: 90%;
  height: auto;
}

h1 {
  line-height: 1;
  font-size: 2rem;
}

p {
  font-size: 1rem;
}

button {
  background-color: black;
  color: white;
  border: none;
  border-radius: 40px;
  padding: 15px 40px;
  font-size: 1rem;
  font-weight: 700;
  align-self: center;
}

footer p {
  padding-top: 20px;
  padding-bottom: 10px;
  text-align: center;
  font-size: 14px;
}

.site-header {
  display: flex;
  justify-content: center;
  padding: 10px;
}

.logo {
  max-width: 120px;
  height: auto;
}

/* Tablet Breakpoint */
@media (min-width: 767px) {
  .hero-section {
    flex-direction: row;
  }

  .hero-content {
    margin-top: 0;
    text-align: start;
  }

  button {
    align-self: flex-start;
  }

  .logo {
    max-width: 150px;
    height: auto;
  }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
  .hero-section {
    height: 100svh;
    flex-direction: row;
  }

  .hero-content {
    text-align: start;
    margin-top: 0;
  }

  button {
    align-self: flex-start;
  }

  h1 {
    font-size: 3rem;
  }

  p {
    font-size: 18px;
  }

  .logo {
    max-width: 180px;
    height: auto;
  }
}

