* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background-color: #f8d7da;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  flex-direction: column;
}

.container {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

h1 {
  font-size: 2.5em;
  color: #e53e3e;
  margin-top: 20px;
}

p {
  font-size: 1.5em;
  color: #2b6cb0;
  font-weight: bold;
  margin-top: 10px;
}

.heart {
  width: 100px;
  height: 100px;
  background-color: #e53e3e;
  position: relative;
  margin: 0 auto;
  margin-top: 20px;
  transform: rotate(225deg);
}

.heart:before,
.heart:after {
  content: '';
  position: absolute;
  width: 100px;
  height: 100px;
  background-color: #e53e3e;
  border-radius: 50%;
}

.heart:before {
  left: 50px;
  top: 0;
}

.heart:after {
  top: 50px;
  left: 0;
}

.buttons {
  margin-top: 30px;
}

button {
  padding: 15px 25px;
  font-size: 1.2em;
  color: white;
  background-color: #e53e3e;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  margin: 10px;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #d53f3f;
}

#confetti-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* Para garantir que os confetes não bloqueiem interações */
  z-index: 9999;
}

@media (max-width: 600px) {
  .heart {
    width: 80px;
    height: 80px;
  }

  .heart:before,
  .heart:after {
    width: 80px;
    height: 80px;
  }

  h1 {
    font-size: 2em;
  }

  p {
    font-size: 1.2em;
  }

  button {
    font-size: 1em;
  }
}
