.main-site {
  width: 100%;
  height: 100dvh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.text-section {
  max-width: 900px;
  margin: 1rem;
  padding: 2rem;
  z-index: 101;

  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 48px;
  overflow: hidden;

  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 30px rgba(0, 0, 0, 0.12);
}

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

  background: rgba(199, 199, 199, 0.247);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);

  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 24px;
  overflow: hidden;

  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) inset,
    0 8px 30px rgba(0, 0, 0, 0.12);
}

.text-section h2,
.text-section h3 {
  max-width: 900px;
  text-wrap: wrap;
  text-align: center;
}

.text-section h2 {
  color: var(--text-primary);
}

.text-section h3 {
  color: var(--text-primary);
}

.thank-you {
  font-family: "Alex Brush", cursive;
  font-weight: 400;
  margin-top: 3rem;
}

.home-pic {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
  place-content: center;
  z-index: 99;
  filter: blur(0.1px);
}

@media (max-width: 768px) {
  .text-section {
    margin-top: 4rem;
  }
}