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

body, html {
  height: 100%;
  font-family: 'Segoe UI', sans-serif;
  color: #ffffff;
  background-color: #000;
  overflow: hidden;
}

.overlay {
  position: absolute; /* ou fixed dependendo de como você quer que o fundo se comporte */
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover; /* Garante que a imagem cubra a tela inteira */
  background-position: center; /* Centraliza a imagem */
  background-repeat: no-repeat; /* Impede a repetição da imagem */
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

.card {
  background: rgba(0, 0, 0, 0.6); /* Fundo escuro com transparência */
  padding: 30px;
  border-radius: 12px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  backdrop-filter: blur(10px); /* Efeito de embaçamento */
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

#frase {
  font-size: 1.6rem;
  margin-bottom: 40px;
  min-height: 80px;
  white-space: pre-wrap;
  padding: 0 20px;
  color: #ffffff;
}

button {
  background-color: #ffffff33;
  border: none;
  color: white;
  padding: 12px 25px;
  margin: 10px;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: background 0.3s;
}

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