#landing_image {
    position: relative;
    width: 100%;
    height: 61vh;
    background-position: center;
    background-size: cover;
}

#landing_image .titles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 27px;
    font-weight: bold;
}

#landing_image .titles :is(h3, h2) {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: white;
    text-shadow: 1px 1px 2px #000;
    line-height: 1.04em;
}

#landing_image .titles h2 {
    text-align: center;
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    #landing_image {
        height: 50vh;
    }
}