html {
    font-family: "Stack Sans Headline", sans-serif;
}
body {
    background-color: #142850;
    margin: 0;
}

header {
    background-color: #ffffff;
    text-align: center;
    padding: 1.5rem;
}

header img {
    width: 280px;
    max-width: 90%;
    height: auto;
}
section div {
    background-color: #ffffff;
    padding: 2rem;
    margin: 2rem auto;
    border-radius: 1.5rem;
    width: 90%;
    max-width: 850px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

section div:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
}

h1 {
    color: #142850;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

h2 {
    color: #202020;
    font-size: 1.4rem;
    margin-top: 1rem;
    text-align: center;
}

p {
    color: #202020;
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}
table {
    width: 100%;
    margin-top: 1rem;
    border-collapse: collapse;
}

table th {
    background-color: #142850;
    color: white;
    padding: 0.8rem;
    border-radius: 0.3rem;
    font-size: 1.1rem;
}

table td {
    background-color: #f4f4f4;
    padding: 0.7rem;
    font-size: 1rem;
    border-radius: 0.3rem;
}
.boton {
    display: inline-block;
    background-color: #142850;
    padding: 1rem 2rem;
    text-decoration: none;
    color: #ffffff;
    border-radius: 2rem;
    font-size: 1.2rem;
    margin-top: 2rem;
    transition: 0.3s;
}

.boton:hover {
    background-color: #1d3f66;
    transform: scale(1.04);
}

div img {
    width: 45px;
    height: 45px;
}

.redes {
    font-size: 1.6rem;
    color: #142850;
    text-decoration: none;
}

footer {
    background-color: #ffffff;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

@media (max-width: 600px) {

    section div {
        padding: 1.3rem;
        margin: 1.5rem 1rem;
        width: auto;
    }

    h1 {
        font-size: 1.7rem;
    }

    h2 {
        font-size: 1.2rem;
    }

    p {
        font-size: 0.95rem;
    }

    .boton {
        font-size: 1rem;
        padding: 0.8rem 1.2rem;
    }

    table th, table td {
        font-size: 0.9rem;
        padding: 0.5rem;
    }

    div img {
        width: 35px;
        height: 35px;
    }

    .redes {
        font-size: 1.3rem;
    }
}
@media (max-width: 900px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.3rem;
    }

    p {
        font-size: 1rem;
    }

    .boton {
        font-size: 1.1rem;
    }
}

