table {
  margin: 0 auto;
  border: 0px solid black;
  width: 80%;
  height: 80%;
  text-align: left;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 20px;
}
td.izquierda {
  width: 70%;
}
td.derecha {
  width: 30%;
  font-size: 50px;
}
td.iz {
  width: 25%;
}
}
td.centro {
  width: 25%;
}
}
td.de {
  width: 25%;
}
td {
  padding: 0px;
  text-align: left;
  vertical-align: top;
  border: 0px solid black;
}
hr {
margin-left: 10%;
margin-right: 10%;
}
p {
margin-right: 10%;
}
p:not(table p) {
margin-left: 10%;
margin-right: 10%;
}
summary {
margin-left: 10%;
margin-right: 10%;
}


----
summary::-webkit-details-marker { display: none; }
----






/* Fuente decorativa */
@import url('https://fonts.googleapis.com/css2?family=Cinzel+Decorative:wght@700&display=swap');

body {
  font-family: 'Cinzel Decorative', serif;
  background: #f0f0f5;
}

/* Contenedor de tarjetas */
.grid {
  display: flex;
  justify-content: center;
  gap: 0px; /* espacio entre tarjetas */
  padding: 20px;
}

/* Tarjetas individuales */
.card {
  flex: 1;
  min-width: 300px;
  margin-left: 10%;  
  margin-right: 10%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none; /* elimina subrayado */
  color: white;
  font-size: 22px;
  font-weight: 20%;
  border-radius: 55px;
  box-shadow: 0 0px 0px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  cursor: pointer;
}

/* Colores */
.bosque { background-color: #4CAF50; }
.amigos { background-color: #F59C0C; }
.altar { background-color: #9E9E9E; }
.mapa { background-color: #6BB7ED; }
.movimiento { background-color: #BBBCCC; }
.inicio { background-color: #C463E0; }

/* Efecto hover */
.card:hover {
  transform: translateY(-7px);
}

.mistico {
  font-family: 'Uncial Antiqua', serif;
  font-size: 18px;
  color: #333333; /* opcional: color místico */
}
html {
  scroll-behavior: smooth;
}