/*
* Prefixed by https://autoprefixer.github.io
* PostCSS: v8.4.14,
* Autoprefixer: v10.4.7
* Browsers: last 4 version
*/

body {
    margin: 0;
}

.global {
    width: 100%;
    min-height: 100vh;
    /* background-image: url("./images/header.png"); */
    /* background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat; */
    position: relative;
    font-family: sans-serif;
    color: white;
}

.global::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.6);
}

.fixed-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('./images/header.png');
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.logo {
    background-color: white;
    position: relative;
    z-index: 1;
    padding: 25px 10px;

    img {
        height: 100px;
        width: auto;
        max-width: 100%;
        display: block;
        margin: auto;
        margin-bottom: 10px;
    }

    .claim {
        color: #98c21d;
        text-align: center;
        font-size: 1rem;

        @media (min-width: 600px) {
            font-size: 1.5rem;
        }
    }
}

.content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: calc(100vh - 150px);

    .main_title {
        font-size: 2em;
        margin-bottom: 30px;
        font-weight: bold;

        @media (min-width: 600px) {
            font-size: 4em;
        }
    }

    .subtitle {
        font-size: 1.5rem;
        margin-block: 20px;

        @media (min-width: 600px) {
            font-size: 2.5rem;
        }
    }

    .announcement {
        font-size: 1rem;
        margin-top: 30px;
        font-style: italic;

        img {
            margin-top: 2rem;
            width: 10rem;
            aspect-ratio: initial;
        }

        @media (min-width: 600px) {
            font-size: 2rem;
        }
    }
}

.footer {
    text-align: center;
    background-color: black;
    color: white;
    padding: 25px 10px;
    font-size: 1.2rem;
    font-family: sans-serif;
    font-weight: 300;
}