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

/* Corpo da página */
body {
  font-family: 'Arial', sans-serif;
  background-color: #c3c3ff; /* Um fundo mais suave */
  color: #000000;
  line-height: 1.6;
  text-align: center;
  padding: 20px;
}

/* Estilo do título */
h1 {
  color: #2a4388; /* Verde mais suave */
  margin-bottom: 20px;
  font-size: 2.5rem;
  font-weight: bold;
}

/* Estilo dos parágrafos */
p {
  font-size: 1.1rem;
  color: #03556e;
  margin-bottom: 20px;
}

/* Caixa para mostrar os resultados */
.resultados {
  background-color: #a8ebff;
  border: 1px solid #001229;
  padding: 15px;
  margin-top: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.resultados p {
  font-size: 1.2rem;
  color: #83cedb;
}

/* Estilo do botão (caso queira adicionar um no futuro) */
button {
  padding: 10px 20px;
  background-color: #538aa3;
  border: none;
  color: rgb(255, 255, 255);
  font-size: 1.1rem;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #264e52;
}
