body {
  font-family: 'Teachers', sans-serif;
  line-height: 1.6;
  color: white;
  background-color: #211F26;
  margin: 0;
  padding: 0;
}

main {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  text-align: center;
}

.text-content {
  max-width: 42rem;
}

.text-content h1 {
  font-size: 56px !important;
  font-weight: bold !important;
  font-family: 'DM Serif Display', serif !important;
  margin-bottom: 0 !important;
  color: white !important;
  line-height: 1.2 !important;
}

.text-content h2 {
  font-size: 1.5rem !important;
  margin-top: 0.5rem !important;
  margin-bottom: 3rem !important;
  color: #d1d5db !important;
}

.qr-and-buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  margin-bottom: 2rem;
}

.buttons {
  display: flex;
  gap: 1rem;
}

.button {
  background-color: #F18F07;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.3s;
}

.button:hover {
  opacity: 0.9;
}

.description {
  color: #9ca3af;
  max-width: 36rem;
  margin: 0 auto;
}

.cover-image {
  display: none;
}

.qr-container {
    padding: 24px 24px 12px 24px;
    border-radius: 40px;
    width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: #F18F07;
}

.qr-container img {
  width: 180px;
  height: auto;
}

.qr-container p {
  font-size: 14px;
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  color: white;
}

@media (min-width: 1024px) {
  main {
    flex-direction: row;
  }

  .content {
    width: 50%;
    padding: 4rem;
  }

  .cover-image {
    display: block;
    width: 50%;
    background-image: url('/images/cover.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  }
}
