:root {
    --color_letras_footer: white;
    --background-color_footer: rgb(8, 108, 56);
    --background-color_botones-footer: rgb(196, 216, 206);
    --background-color_botones-footer-hover: rgb(225, 217, 206);
    --footer_height: 15vh;
}

footer {
    width: 100%;
    height: var(--footer_height);
    background-color: var(--background-color_footer);
    display: flex;
    align-items: center;
    justify-content: space-between;
    /* padding: 0 1%; */
}

footer > div {
    width: calc(100% / 3);
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
    gap: 5px;
    margin-left: 12.5%;
}

footer > div > h3 {
    margin: 0;
}

footer > div > div {
    display: flex;
    gap: 5px;
}

footer > div > div > a {
    text-decoration: none;
    color: black;
}

footer > div > div > img {
    width: 20px;
    height: 20px;
    object-fit: cover;
}

#modal {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 40px 30px 20px 30px;
    max-width: 750px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 8px;
    position: relative;
}

#modal-close {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--background-color_footer);
    color: white;
    border: none;
    padding: 5px 10px;
    font-size: 16px;
    cursor: pointer;
    border-radius: 5px;
}

#modal-title {
    margin-top: 0;
    padding-right: 50px;
}

#modal-text {
    white-space: pre-wrap;
    font-size: 1.1em;
}