/** Large Screen */
@media (min-width: 1300px) {
    body {
        background-repeat: no-repeat;
        background-size: cover;
        /* background-image: url("/public/images/background-3.jpg"); */
        height: 100vh;

        display: flex;
        flex-direction: column;
    }

    header,
    footer {
        width: 100vw;
    }

    main {
        flex-grow: 1;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    h1 {
        /* color: var(--background-color); */
        font-weight: bolder;
        text-align: center;
    }

    h2 {
        /* color: var(--background-color); */
        text-align: center;
    }

    #cross {
        display: initial;
    }

    #cross-mobile {
        display: none;
    }

    h1 {
        margin-top: 40px;
        font-size: 60px;
    }

    h2 {
        font-weight: lighter;
        margin-top: 40px;
        font-size: 30px;
    }
}

/** Medium Screen */
@media (min-width: 700px) and (max-width: 1300px) {
    body {
        background-repeat: no-repeat;
        background-size: cover;
        /* background-image: url("/public/images/background-2.jpg"); */
        height: 100vh;

        display: flex;
        flex-direction: column;
    }

    header,
    footer {
        width: 100vw;
    }

    main {
        flex-grow: 1;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    footer {
        width: 100%;
        position: fixed;
        bottom: 0%;
    }

    h1 {
        font-weight: bolder;
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    section {
        margin: 10% auto;
    }

    #cross {
        display: initial;
    }

    #cross-mobile {
        display: none;
    }

    h1 {
        margin-top: 40px;
        font-size: 60px;
    }

    h2 {
        font-weight: lighter;
        margin-top: 40px;
        font-size: 30px;
    }
}

/** Mobile screen */
@media (max-width: 700px) {
    body {
        background-repeat: no-repeat;
        background-size: cover;
        /* background-image: url("/public/images/background-3.jpg"); */
        height: 100vh;

        display: flex;
        flex-direction: column;
    }

    header,
    footer {
        width: 100vw;
    }

    main {
        flex-grow: 1;

        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    h1 {
        font-weight: bolder;
        text-align: center;
    }

    h2 {
        text-align: center;
    }

    section {
        margin: 20% auto;
    }

    #cross {
        display: none;
    }

    #cross-mobile {
        display: initial;
    }

    h1 {
        margin-top: 20px;
        font-size: 40px;
    }

    h2 {
        font-weight: 400;
        margin-top: 20px;
        font-size: 20px;
    }
}
