:root {
    --azul: #0F01B2;
    --rojo: #AC2E22;
    --morado: #55156E;
    --azulClaro: #B2D1F5;
}

.base {
    overflow-x: hidden;
}

.header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 100;
    background-color: var(--azul);
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 150px;
}

.header img {
    grid-row: 1;
    grid-column: 1;
    max-height: 100%;
    max-width: 50%;
    width: auto;
    height: auto;
    border-radius: 100%;
    align-self: center;

    @media only screen and (max-width: 800px) {
        grid-row: 1 / span 4;
    }
}

.header p {
    list-style: none;
    align-self: center;
    padding: 10px;
    margin: 0;
    grid-row: 1;
    grid-column: 4 / span 5;
    font-weight: bold;
    color: white;

    @media only screen and (max-width: 800px) {
        grid-column: 2;
    }
}

.main {
    display: flex;
    background-color: var(--azulClaro);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
    margin-top: 150px;
}

.main img {
    .header img {
        max-width: 100%;
        width: auto;
        height: auto;

        @media only screen and (max-width: 800px) {
            grid-row: 1 / span 4;
        }
    }
}

.main img:hover {
    cursor: pointer;
}

.main h1 {
    color: var(--morado);
    font-weight: bolder;
    font-size: 2em;
    text-align: center;
}

.main p {
    color: white;
    font-weight: bold;
    font-size: 1em;
    text-align: justify;
    padding: 20px;
}

.footer {
    display: flex;
    background-color: var(--rojo);
    align-items: center;
    justify-content: center;
    flex-direction: column;
    width: 100%;
}

.footer p {
    color: white;
    font-size: 0.8em;
    font-weight: bold;
    text-align: center;
}