.title-container {
    margin-top: 100px;
    width: 100%;
    height: 350px;
    background: url(/img/titlebg.jpg);
    background-size: cover;
    background-position: -50px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.title-container::before {
    margin-top: 100px;
    content: '';
    position: absolute;
    height: 350px;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.title-text {
    position: relative;
    color: white;
    font-size: 3vw;
    font-weight: bold;
    text-align: center;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.8);
    z-index: 2;
    padding: 0 1rem;
    word-break: keep-all;
    animation: top-title-show 2s;
    z-index: 2;
}

@keyframes top-title-show {
    0% {
        opacity: 0;
        padding-top: 150px;
    }

    100% {
        opacity: 1;
        padding-top: 0;
    }
}

@media (max-width: 768px) {

    .title-container,
    .title-container::before {
        height: 20vh;
        margin-top: 70px;
    }

    .title-text {
        font-size: 5vw;
    }
}

@media (max-width: 480px) {

    .title-container,
    .title-container::before {
        height: 15vh;
    }

    .title-text {
        font-size: 6vw;
    }
}