.wrapper {
    background-image: url(../assets/images/headerBackground.jpeg);
    background-size: cover;
    background-position: center;
    height: 800px;
}

.wrapperCover {
    background-color: #4A48118C;
    width: 100%;
    height: 100%;
}

.headerWrapper {
    font-family: Nunito, sans-serif;
    font-size: 18px;
    color: var(--color-light);
    border-bottom: 1px solid var(--color-light);
    display: block;
}

.headerWrapper ul {
    display: flex;
    justify-content: center;
    padding: 20px 0;
}

.headerWrapper ul li {
    margin: 0 15px;
}

.headerWrapper ul li a {
    color: var(--color-light);
}

.headerContentWrapper {
    height: calc(100% - 65px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.headerContentWrapper h1 {
    font-size: 70px;
    color: var(--color-yellow);
    font-family: KoskoBold, sans-serif;
}

.headerContentWrapper h3 {
    font-size: 30px;
    color: var(--color-light);
    font-family: Nunito, sans-serif;
}

.headerContentWrapper a {
    font-size: 18px;
    font-family: Nunito, sans-serif;
    color: var(--color-dark-green);
    background-color: var(--color-yellow);
    width: 80%;
    max-width: 500px;
    height: 45px;
    line-height: 45px;
    text-align: center;
    border-radius: 20px;
    margin-top: 50px;
}

@media screen and (max-width: 1000px) {
    .headerWrapper {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .wrapper {
        height: 645px;
    }

    .headerWrapper {
        display: none;
    }

    .headerContentWrapper {
        height: 100%;
    }

    .headerContentWrapper h1 {
        font-size: 32px;
    }

    .headerContentWrapper h3 {
        font-size: 16px;
    }

    .headerContentWrapper a {
        font-size: 16px;
        width: 90%;
    }

    .headerContentWrapper {
        padding-top: 200px;
        padding-bottom: 30px;
        justify-content: space-between;
    }
}
