/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  background: linear-gradient(135deg, #f2f2f2, #d9d9d9);
  color: #333;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Contenedor principal */
.container {
  background: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0px 4px 12px rgba(0,0,0,0.15);
  max-width: 700px;
  text-align: center;
}

/* Títulos */
h1 {
  font-size: 2rem;
  color: #222;
  margin-bottom: 15px;
}

p {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
}

/* Estilo para resaltar texto */
b {
  color: #0077cc;
}

/* Footer chiquito opcional */
footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: #888;
}
