* {
    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;
}

header {
    margin-bottom: 1.5rem;
}

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

#description {
    margin: 0px 0px 25px 0px;
    font-size: 1.15rem;
}

#connectButton {
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
}

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

#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: 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: Pie de Pagina */
#text_footer {
    font-size: 1.15rem;
    text-align: center;
}
/* ----------------------------------------- */