/* Atributos para todos los elementos */
* {
  text-align: center;
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 2rem;
    background-image: linear-gradient(#272766, #000);
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    color: #e7eaf0;
}

h1,h2,h3,h4,h5,h6,p,b,li {
  color: #e7eaf0;
}





/* ----------------------------------------- */
/* Seccion: Menu */
#menu {
  list-style: none;      /* quita los puntos de la lista */
  padding: 0;            /* elimina espacio interno */
  margin: 0;             /* elimina espacio externo */
  display: flex;         /* convierte el ul en un contenedor flexible */
  justify-content: center; /* centra horizontalmente los <li> */
  gap: 30px;             /* espacio entre las opciones */
}

#menu_op {
  display: inline;
  margin: 0 5px 0 5px;       /* hace que los <li> se comporten en línea */
}

#menu_op a:hover {
  color: #fff;
}

#menu ul li a {
  text-decoration: none; /* quita el subrayado */
  color: #e7eaf0;          /* color de los enlaces */
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Juego */
#title_game {
  font-size: 4rem;
  margin: 0px 0px 0px 0px;
}

#button_connect_wallet {
  margin: 0px 0px 20px 0px;
}

#image {
  width: 550px;
  height: 550px;
  border-radius: 8px;
}

#input_solution {
  background-color: #1c212c;
  border-color: #2a3140;
  color: #e0e3e7;
  width: 250px;
  height: 61px;
  font-size: 20px;
  margin: 5px 0px 20px 0px;
}

#button_send_solution {
  margin: 5px 0px 20px 0px;
  height: 61px;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Reglas e Informacion de token y red */
summary {
  margin-bottom: 25px;
}

#title_rules_network_token {
  font-size: 2.5rem;
}

#title_rules_network_token:hover {
  color: #fff;
}

#subtitle_rules_network_token {
  font-size: 1.65rem;
  text-align: left;
}

#paragraph_rules_network_token {
  font-size: 1.25rem;
  text-align: left;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Pie de Pagina */
#text_footer {
  font-size: 1.15rem;
}
/* ----------------------------------------- */