body {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    width: 100vw;
    margin: 0;
    overflow: hidden;
}

main {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 60%;
    height: auto;
    padding: 20px;
    background-color: #FFBBC1;
    border-radius: 20px;
    max-width: 800px;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.75s ease;
}

h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 3vw, 3rem);
  color: #C00000;
  text-align: center;
}

@media (max-width: 900px) {
    h1 {
        font-size: 1.5rem !important;
    }
    #button-wrapper button {
        font-size: 0.8rem !important;
    }
    p {
        font-size: 0.7rem !important;
        margin-top: -15px !important;
    }
    #button-wrapper button {
        height: 35px !important;
        width: 100px !important;
    }
}

@media (max-width: 550px) {
    h1 {
        font-size: 1rem !important;
    }
    #button-wrapper button {
        font-size: 0.7rem !important;
    }
    p {
        font-size: 0.6rem !important;
    }
}

p {
  font-family: 'Montserrat', system-ui, sans-serif;
  line-height: 1.6;
  font-weight: 500;
  padding-top: 15px;
  text-align: center;
}

#button-wrapper {
    width: 100%;
    height: 50px;
    margin: 10px 0;
    /* background-color: pink; */
    display: flex;
    flex-direction: row;
    justify-content: center;
}

#button-wrapper button {
    border: 4px solid #C00000;
    width: 180px;
    height: 50px;
    font-family: 'Montserrat', system-ui, sans-serif;
    font-weight: 500;
    font-size: 1.2rem;
    border-radius: 30px;
    margin: 0 10px;
    gap: 10px;
    cursor: pointer;
    transition: all 0.75s ease;
    background-color: white;
}

#button-wrapper button:hover {
    background-color: #C00000;
    color: white;
}

#heart-container {
  position: fixed;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: -1;
}

.heart {
  position: absolute;
  bottom: -20px;
  color: red;
  animation: floatUp linear forwards;
  will-change: transform, opacity;
}

@keyframes floatUp {
  0% {
    transform: translate(0, 0) scale(4);
    opacity: 1;
  }
  100% {
    transform: translate(
      calc(-30px + 60px * var(--x)),
      -120vh
    ) scale(7);
    opacity: 0;
  }
}