﻿body {
    display: grid;
    height: 100%;
    width: 100%;
    grid-template-rows: 1fr 9fr;
    background-color: var(--white);
}

.navigation {
    grid-row: 1;
    grid-column: 1/-1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0.5em 0.75em;
    width: 100%;
}

.background {
    display: grid;
    grid-row: 2/-1;
    grid-template-rows: 1fr 3fr 1fr;
    background-repeat: no-repeat;
    background-size: cover;
    background-position-x: center;
    padding: 2rem;
}

.container-landing-page {
    grid-row: 2;

    .normal-text {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {

    .background {
        grid-template-columns: 1fr 5fr 2fr 1fr;
        width: 100%;
    }

    .container-landing-page {
        grid-column: 2;
        align-self: center;
    }
}
