
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@400;700&display=swap');

body {
  font-family: 'Comfortaa', cursive;
  background-color: #f0f4f8;
  color: #333;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  margin: 0;
  min-height: 100vh;
  text-align: center;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 20px;
  text-align: center;
}

label {
  margin-top: 15px;
  font-weight: 600;
}

select, button {
  padding: 12px 24px;
  margin-top: 8px;
  margin-bottom: 12px;
  font-size: 16px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background-color: #fff;
  transition: box-shadow 0.3s ease;
  color: #333;
}

select:focus, button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #c0d4ff;
}

button {
  background-color: #222;
  color: white;
  cursor: pointer;
  border: none;
  font-weight: bold;
}

button:hover {
  background-color: #000;
}

#resultado {
  margin-top: 20px;
  font-size: 18px;
  color: #2c3e50;
  font-weight: bold;
  text-align: center;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #666;
}

footer a {
  color: #3366cc;
  text-decoration: none;
}

footer a:hover {
  text-decoration: underline;
}
