.hero-image {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.7);
    margin-bottom: 3rem;
    overflow: hidden;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/homepage/IMG_1061.jpg') center center/cover no-repeat;
    filter: blur(0px);
    z-index: 0;
}

.hero-image > span {
    position: relative;
    z-index: 1;
}

h2{
    color: white;
}