/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  background-color: #f0f4f0; /* Un verde menta muy pálido, casi blanco */
  color: #5c6b5c; /* Verde musgo oscuro para el texto */
  font-family: 'Courier New', monospace; /* Fuente clásica de terminal */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-image: radial-gradient(#dcead9 1px, transparent 1px); /* Puntitos sutiles de fondo */
  background-size: 20px 20px;
}

.main-card {
  background-color: #ffffff;
  width: 400px;
  padding: 40px;
  border: 2px solid #a8cca8; /* Borde verde pastel */
  box-shadow: 8px 8px 0px #a8cca8; /* Sombra sólida retro */
  text-align: center;
  border-radius: 15px;
}

h1 {
  font-size: 20px;
  color: #7fa17f;
  margin-bottom: 5px;
}

button {
  background-color: #ffffff;
  border: 1px solid #5c6b5c;
  padding: 10px 20px;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 3px 3px 0px #5c6b5c;
  transition: all 0.2s;
}

button:hover {
  transform: translate(2px, 2px); /* Efecto de presionar */
  box-shadow: 1px 1px 0px #5c6b5c;
}

hr {
  border: 0;
  border-top: 1px dashed #a8cca8;
  margin: 20px 0;
}