/* ----------------------------------------- */
/* Seccion: Atributos para todos los elementos */
* {
  text-align: center;
  font-family: "Montserrat", sans-serif;
}

body {
    margin: 0;
    padding: 2rem;
    background-color: #000;
    background-size: cover;
    width: 100%;
    min-height: 100vh;
    color: #fff;
}

h1,h2,h3,h4,h5,h6,p,b,li {
  color: #fff;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Menu */
#menu {
  list-style: none;      
  padding: 0;            
  margin: 0;             
  display: flex;         
  justify-content: center; 
  gap: 30px;             
}

#menu_op {
  display: inline;
  margin: 0 5px 0 5px;       
}

#menu_op a {
  text-decoration: none;
  transition: .3s ease-in-out;
}

#menu_op a:hover {
  color: #1797EE;
}

#menu ul li a {
  text-decoration: none; 
  color: #fff;          
}
/* ----------------------------------------- */





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

#button_connect_wallet {
  margin: 0px 0px 20px 0px;
  border: 2px solid #1797EE;
  border-radius: 10px;
  background-color: #1797EE;
  color: #fff;
  cursor: pointer;
  transition: .3s ease-in-out;
}

#button_connect_wallet:hover {
  background-color: #fff;
  color: #1797EE;
}

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

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

#button_send_solution {
  margin: 5px 0px 20px 0px;
  height: 61px;
  border: 2px solid #1797EE;
  border-radius: 5px;
  background-color: #1797EE;
  color: #fff;
  cursor: pointer;
  transition: .3s ease-in-out;
}

#button_send_solution:hover {
  background-color: #fff;
  color: #1797EE;
}

#text_time_solution {
  font-size: 1rem;
  margin: 0px 0px 0px 0px;
}

#title_options {
  font-size: 2.5rem;
  margin: 0px 0px 0px 0px;
}

#options_game {
  font-size: 1.5rem;
  margin: 0px 0px 0px 0px;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: How to play */
.htp-title {
    text-align: center;
    font-size: 50px;
    animation-name: move;
    animation-duration: 1.25s;
    animation-delay: 0s;
    animation-fill-mode: both;
}

.htp-container {
    width: 750px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 315px;
    gap: 10px;
    margin: auto;
    margin-bottom: 25px;
}

.htp-box {
    text-align: center;
    background-color: #fcfdfe;
    border-radius: 10px;
    transition: .3s ease-in-out;
    cursor: default;
}

.htp-box:hover {
  scale: 1.02;
}

.htp-box h1 {
    font-size: 24px;
    color: #000;
    margin-top: 12px;
}

.htp-box p {
    width: 225px;
    margin: 10px 10px;
    color: #000;
}

.htp-box img {
    width: 150px;
    height: 150px;
}

.htp-box1 {
    animation-name: move;
    animation-duration: 1.25s;
    animation-delay: 250ms;
    animation-fill-mode: both;
}

.htp-box2 {
    animation-name: move;
    animation-duration: 1.25s;
    animation-delay: 400ms;
    animation-fill-mode: both;
}

.htp-box3 {
    animation-name: move;
    animation-duration: 1.25s;
    animation-delay: 550ms;
    animation-fill-mode: both;
}

@keyframes move {
    from {
        transform: translateY(0px);
    }

    to {
        transform: translateY(-25px);
    }
}
/* ----------------------------------------- */





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

#title_rules_network_token {
  font-size: 2.5rem;
}

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

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

#flex_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

#flex_item {
  margin: 5px;
  width: 650px;
  min-width: 400px;
  min-height: 275px;
  text-align: center;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Donar */
/* ----------------------------------------- */





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