/* ----------------------------------------- */
/* 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: #e7eaf0;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* 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: Titulo */
header {
    margin-bottom: 1.5rem;
}

#title {
    text-align: center;
    font-size: 4rem;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Boton Conectar Wallet */
#connectButton {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: 2px solid #1797EE;
    border-radius: 10px;
    background-color: #1797EE;
    color: #fff;
    cursor: pointer;
    transition: .3s ease-in-out;
}

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

#status {
    margin-top: 1rem;
    font-weight: bold;
}
/* ----------------------------------------- */





/* ----------------------------------------- */
/* Seccion: Articulos */
#content {
    margin-top: 2rem;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 0.5rem;
    background: white;
}

article {
    background-color: #fff;
}

#article_title {
    color: #000;
}

#article_p {
    color: #000;
}
/* ----------------------------------------- */





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