:root{
    --verdeBalu:#56B8A4;
    --rosaBalu:#FD807E;
    --grisBalu:#E4F0ED;
    --fondoAzul:#d3e1f7;
    --footerColor:#C0C0C0;
    --azulOscuro:#17b6f9;
}
header {
    width: 100%;
    padding: 10px;
    background-color: var(--grisBalu);
    position: fixed;
    top: 0;
    left: 0;
}
body {
    margin: 0;
    background-color: var(--fondoAzul);
    color: var(--azulOscuro);
    font-family: 'Times New Roman', Times, serif;
}
h1{
    font-size: 70px;
    text-transform: uppercase;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 120px); 
    text-align: center;
    font-size: 4rem;
}

footer {
    width: 100%;
    background-color: var(--footerColor);
    color: black;
    text-align: center;
    padding: 5px;
    position: absolute;
    bottom: 0;
    left: 0;
}

footer a {
    color: black;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}
footer, footer p, footer a, footer address {
    text-transform: none !important;
    font-family: 'Times New Roman', Times, serif;
}