body, html {
    height: 1000 px;
    min-height: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: black;
    font-family: 'Courier New', Courier, monospace;
    overflow-x: hidden;
}

/* header */

hr {
    color: #00ff00;
}


/* Lluvia */
#rainingCode {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

/* Contenido dentro del div de la página */
#content {
    position: relative;
    z-index: 2;
    padding: 20px;
    text-align: center;
    width: 80%;
    margin: 100px auto;
    background-color: rgba(52, 53, 52, 0.205); 
    border-radius: 10px;
    box-shadow: 0 0 10px green;
    color: #fff;
    /* overflow-x: auto; */
}

#content h1 {
    margin-top: 0;
    color: #33ff33;
}

#content h2 {
    color: #ffe600;
}

/* Title Image */
.img-tittle {
    text-align: center;
}

/* Main containes */
#main { 
    display: flex;
    /* flex-direction: row; */
    /* justify-content: center; */
    align-items: center;
    flex-wrap: wrap;
    overflow-y: auto;
    overflow-x: auto;
}

#hSquare {
    justify-content: center;
}

main h1 {
    text-align: center;
    position: relative;
    line-height: 1.2;
    display: inline-block;
    z-index: 2;
    padding: 0 10px;
    margin: 0 auto; /* Center the title */
    /*flag{1_h4T3_CsS}*/
}

main h1::before,
main h1::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%); /* Center the line vertically */
    /* width: calc(50% - 20px);  */
    height: 1px;
    background-color: green; /* Line color */
    z-index: -1;
}

main h1::before {
    left: 100%;
    margin-left: 0.1em;
}

main h1::after {
    right: 100%;
    margin-right: 0.1em;
}

/* Section */
section {
    margin-top: 60px;
    margin-bottom: 10px;
    /* Separate border properties */
    border-style: dotted;
    border-width: 1px;
    border-color: #09ff0063;
    /* Border radius */
    border-radius: 10px; /* Adjust this value as needed */
    padding: 0.4em;
}

section p {
    text-align: justify;
    color: rgb(183, 253, 43);
}

section a {
    color: rgb(170, 255, 0);
    font-weight: bold;    
}


/* Footer */
footer {
    margin-top: 50px;
    margin-bottom: 10px;
}

/* footer h2 {
    text-align: center;
    color: #fffb00;
} */

#redes-link {
    margin: 10px;
    height: auto; /* Keep the aspect ratio */
}

/* Table autogenerated */
#ranking tr:hover {
    background-color: #9e989867;
}

table {
    /* Center the table */
    margin-top: 20px;
}

table, th, td {
    border: 1px solid #33ff33;
    /* Green borders for the table */
}

caption {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #33ff33;
    /* Caption color */
}

thead {
    background-color: #0a0a0a;
    /* Dark head background */
}

th, td {
    /* padding: 10px; */
    text-align: center;
    color: #33ff33;
    padding: 0.3em;
}

tbody tr:nth-child(odd) {
    background-color: #131313;
    /* Odd row background */
}

tbody tr:nth-child(even) {
    background-color: #191919;
    /* Even row background */
}

@media screen and (max-width: 960px) {
    table, th, td {
        font-size: 0.9em; /* Smaller font size */
        /* padding: 5px; Reduced padding */
    }

    caption {
        font-size: 1.2em; /* Smaller caption font */
    }

    /* Optional: Hide certain columns on smaller screens */
    /* .your-column-class {
        display: none;
    } */
}


