body, h1, h2, h3, p, hr {
    margin: 0;
    margin-block: 0;
}

h2 {
    font-size: 40px;
    font-weight: 500;
}

h3 {
    color: #69AF47;
    opacity: 0.9;
    font-size: 30px;
    font-weight: 500;
}

p {
    font-size: 18px;
    font-weight: 400;
    opacity: 0.8;
}

a {
    text-decoration: none;
    color: inherit;
}

header {
    position: relative;
    height: 150vh;
    width: 100%;
    background-color: #91C072;
    background-image: url('./assets/gradient_mobile.png');
    background-size: cover;
    background-repeat: no-repeat;

    .logo {
        position: fixed;
        max-width: 75vw;
        z-index: 1;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .balloons {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: url("./assets/balloons_mobile.png");
        background-size: 100%;
        background-repeat: no-repeat;
        z-index: 2;
    }
}

main {
    position: relative;
    z-index: 2;
}

.container_1 {
    text-align: center;
    padding: 80px 10px;

    h2 {
        padding: 0 0 30px;
    }

    h3 {
        padding: 30px 0;
    }

    .text-block_1 {
        padding: 0 0 35px;
    }

    .text-block_2 {
        padding: 35px 0 0;
    }

    hr.welle {
        border: none;
        background-image: url("./assets/trenner_mobile.png");
        background-size: contain;
        background-repeat: no-repeat;
        background-position: center;
        height: 9px;
    }
}

footer {
    border-top: 1px solid rgba(30, 26, 27, 0.35);
    padding: 30px 0 50px;
    text-align: center;

    img {
        padding: 0 0 50px;
    }
}

@media (min-width: 768px) {
    h2 {
        font-size: 70px;
    }

    h3 {
        font-size: 40px;
    }

    p {
        font-size: 30px;
    }

    header {
        height: 175vh;
        background-image: url('./assets/gradient_desktop.png');
        background-size: cover;

        .logo {
            max-width: 33%;
        }

        .balloons {
            background-image: url("./assets/balloons_desktop.png");
        }
    }

    .container_1 {
        padding: 120px 20%;

        h2 {
            padding: 0 0 40px;
        }

        h3 {
            padding: 30px 0 40px;
        }

        .text-block_1 {
            padding: 0 0 55px;
        }

        .text-block_2 {
            padding: 55px 0 0;
        }

        hr.welle {
            background-image: url("./assets/trenner_mobile.png");
            height: 12px;
        }
    }

    footer {
        padding: 25px 40px 35px;
        display: flex;
        align-items: center;

        img {
            padding: 0;
            order: 1;
            text-align: center;
        }

        .copyright {
            order: 0;
            flex: 1;
            text-align: left;
        }

        .link {
            order: 2;
            flex: 1;
            text-align: right;
        }
    }
}