/*********************** BASE ***********************/
* {
  box-sizing: border-box;
  /* El box-sizing asegura que el ancho incluya padding y borde */
}

html,
body {
  margin: 0;
  padding: 0;
}

/*********************** FUENTES ***********************/
@font-face {
  font-family: "fuenteDungeon";
  src: url("../fuentes/DUNGRG__.TTF") format("truetype");
}

/*********************** BODY GENERAL ***********************/
body {
  font-family: "EB Garamond", sans-serif;
  background-image: url("../img/pergamino.webp");
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    "header"
    "main"
    "footer";
}

/*********************** SELECTORES GLOBALES ***********************/
h1 {
  -webkit-text-stroke: 1px black; /* Borde negro del texto */
  text-shadow: 1px 1px 1px black; /* Sombra negra suave */
  font-family: "Cinzel", serif;
  font-size: 2rem;
  color: #4a0000;
  font-weight: bold;
}

main select {
  font-family: "EB Garamond", serif;
  font-size: 1.1rem;
  margin: 1px;
  padding: 1px;
  box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
}

main figure {
  display: flex;
  flex-direction: column;
  align-items: center; /* Centra horizontalmente */
  justify-content: center; /* Centra verticalmente si hace falta */
  width: 100%;
  margin: 1rem 0;
  text-align: center;
}

main button {
  cursor: pointer;
}




