:root {
    --bru-yell: hsl(40, 80%, 70%);
    --bru-yell-oapc: hsla(40, 80%, 70%, 0.9);
    --bru-yell-dark: hsl(40, 80%, 62%);
    --bru-yell-dark-opac: hsla(40, 80%, 62%, 0.9);
    --bru-blue: #1B6898;
    --bru-brown: #3D3629;
    --bru-green: #436235;
    --bru-blue-dark: #162B3A;

    --font-size: 1.2rem;
    --large-font: 1.4rem;
    --content-width: 86rem;
    --content-padding: 2rem;
    --main-content-padding: 6rem;
    --boder-radius: 0.5rem;
}

@font-face {
    font-family: "Open Sans";
    src: url("../fonts/OpenSans-VariableFont_wdth,wght.woff2") format("woff2"),
        url("../fonts/OpenSans-VariableFont_wdth,wght.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Slackery";
    src: url("../fonts/Slackey-Regular.woff2") format("woff2"),
        url("../fonts/Slackey-Regular.woff") format("woff");
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

body {
    font-family: "Open Sans", sans-serif;
    font-weight: 400;
    font-size: var(--font-size);
    width: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: var(--bru-blue);
    user-select: none;
    font-size: 1.3rem;
    color: white;
    position: relative;
}

::selection {
    background-color: var(--bru-blue);
    color: white;
}

a {
    color: var(--bru-blue);

    &:hover,
    &:active {
        text-decoration: none;
    }
}

h1,
.logo {
    font-family: "Slackery", "sans-serif";
    font-size: 3em;
    filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.6));
    margin: 0;
}

#content-wrapper {
    width: 100%;
    min-height: 100vh;
    height: auto;
}

main {
    position: relative;
    width: 100%;
    height: auto;

    .main-wrapper {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        height: calc(100vh - 10rem);

        &>div {
            display: flex;
            flex-direction: column;
            font-variation-settings: 'wght' 400, 'wdth' 85;
            font-size: 1.3em;
            text-align: center;
        }

        & .head {
            margin-bottom: -3rem;
        }

        & #brubaer {
            height: auto;
            width: 10rem;
            filter: drop-shadow(0 0 0.5rem rgba(0, 0, 0, 0.3));
            display: block;
            position: absolute;
            margin-left: -10rem;
            margin-top: -1rem;
        }
    }

    .main-wrapper-imp {
        height: auto;
        font-size: 1rem;
        padding: 3rem;

        & a {
            color: white;
        }
    }

    hr {
        border: none;
        border-top: 2px solid white;
        margin: 3rem 0;
    }
}

footer {
    width: 100%;
    min-height: 5rem;
    height: 10rem;
    position: relative;

    & .grass {
        background-image: url(../img/gras.webp);
        background-repeat: repeat-x;
        background-size: contain;
        width: 100%;
        height: 10rem;
        mix-blend-mode: multiply;
        position: absolute;
        bottom: 0;
    }

    & .footer-content {
        padding: 0.5rem 3rem;
        bottom: 0;
        position: absolute;
        width: 100%;
        font-size: 1.1rem;
        color: var(--bru-blue);
        display: flex;
        justify-content: space-between;
        box-sizing: border-box;

        .footer-left a {
            text-decoration: none;
        }

        & p {
            margin: 0;
        }

        & .logo {
            font-size: 1em;
        }
    }
}

@media only screen and (max-width: 700px) and (orientation: portrait) {

    body {
        font-size: 1.2rem;
    }

    main {
        & .main-wrapper {
            & .head {
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: center;
            }

            & #brubaer {
                height: auto;
                width: 10rem;
                position: relative;
                margin: 0;
            }
        }

        & .main-wrapper-imp {
            padding: 1rem;
        }
    }

    footer {
        & .grass {
            background-size: cover;
        }

        & .footer-content {
            padding: 0.5rem 1rem;

        }


    }



}