html::before {
    content: "";
    background: url("../img/backgrounds/bg1_gradient.png") no-repeat fixed center;
    background-size: cover;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -100;
}

.container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    padding: 0 1rem;
    margin-bottom: 5rem;

    & img {
        object-fit: contain;
        height: 20vh;
    }
}


.header {
    margin: 1.6rem 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;

    & h1, & p {
        text-align: center;
        margin: 0;
    }

    & h1 {
        color: var(--primary-color);
        font-family: Barlow, sans-serif;
        font-weight: bold;
        font-size: 2.5rem;
        line-height: 1;
    }

    & p {
        color: var(--secondary-color);
        font-size: 1.6rem;
    }
}

.content {
    background: rgba(255, 255, 255, 0.55);
    box-shadow: 2px 0 30px 25px rgba(255, 255, 255, 0.55);
    -webkit-box-shadow: 2px 0 30px 25px rgba(255, 255, 255, 0.55);
    -moz-box-shadow: 2px 0 30px 25px rgba(255, 255, 255, 0.55);
    min-height: 70vh;

    & h1 {
        margin-top: 0;
    }

    & h3 {
        margin: 0;
    }

    & h2 {
        margin-bottom: 0;
    }

    & a {
        color: black;
        text-decoration: none;
    }
}


footer {
    min-width: initial;
}


@media screen and (min-width: 768px) {
    p {
        margin: .3rem;
    }
}

@media screen and (min-width: 1080px) {
    .container img {
        height: 40vh;
    }
}

@media screen and (min-width: 2440px) {
    footer {
        min-width: 100vw;
        bottom: 0;
        position: absolute;
    }
}