.explore-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    overflow: hidden;
    box-sizing: border-box;
    z-index: 0;
}

.explore-hero img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.explore-hero h1 {
    position: absolute;
    bottom: 13rem;
    left: 3.5rem;
    font-size: 3rem;
    color: #ffffff;
    z-index: 1;
    font-family: 'Grenze Gotisch', cursive;
}

@media (min-width: 1024px) {
    .explore-hero h1 {
        font-size: 7rem;
        bottom: -1rem;
        left: 4.5rem;
    }
}

@media (max-width: 768px) {
    .explore-hero {
        max-height: 17rem;
    }

    .explore-hero img {
        max-height: 17rem;
    }

    .explore-hero h1 {
        font-size: 3rem;
        bottom: 2rem;
    }
}
