.title_bar {
    margin-top: 40px;
    position: relative;
    width: calc(100% - 40px);
    text-align: center;
    padding: 20px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
}

.title_bar img, .title_bar > picture {
    max-width: 90vw;
    height: auto;
    width: auto;
}

.title_bar > h3 {
    padding: 0;
    font-size: 32px;
    color: #f5b519;
    margin: 0 0 10px;
}

.title_bar > h3 > span {
    background-color: rgba(0, 0, 0, 0.4);
    padding: 1px 5px 1px 5px;
}

.screenshot {
    position: relative;
    width: 75%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 120px black;
}

.showcase_screenshots {
    position: relative;
    padding: calc(max(8vw, 8vh)) 40px 40px;
}

.showcase_screenshots > h4 {
    position: absolute;
    color: rgb(109, 11, 190);
    font-size: max(8vw, 7vh);
    text-align: right;
    padding: 40px;
    margin: 0;
    top: calc(max(4vw, 4vh) - 60px);
    left: 0;
    word-break: break-word;
}

.showcase_screenshots > h4:first-child {
    color: rgb(255, 174, 0);
    z-index: 2;
    mix-blend-mode: lighten;
}

.showcase_screenshots > h4:last-child {
    z-index: 1 !important;
    color: rgba(0,0,0,0) !important;
    text-shadow: none !important;
}

.showcase_screenshots > h4:last-child > span {
    background-color: rgba(159, 159, 159, 0.05);
    box-decoration-break: clone;
}

.showcase_screenshots:nth-child(2n) > h4 {
    text-align: left;
    color: rgb(228, 243, 12);
}

.showcase_screenshots:nth-child(2n) > h4:first-child {
    color: rgb(25, 0, 255);
}

.showcase_screenshots:nth-child(2n) img, .showcase_screenshots:nth-child(2n) picture {
    display: block;
    margin-left: auto;
}

@media only screen and (max-width: 600px) {

    .showcase_screenshots {
        padding: calc(max(8vw, 8vh)) 20px 20px;
    }

    .screenshot {
        width: 100%;
    }

    .showcase_screenshots > h4 {
        left: 0;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (prefers-reduced-motion: no-preference) {
    .showcase_screenshots > h4 {
        opacity: 0;
    }

    .showcase_screenshots > h4.animation {
        animation: ease-out 250ms leftAnim forwards;
    }

    .showcase_screenshots:nth-child(2n) > h4.animation {
        animation-name: rightAnim;
    }
}

@keyframes leftAnim {
    0% {
        opacity: 0;
        transform: translateX(10vw);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes rightAnim {
    0% {
        opacity: 0;
        transform: translateX(-10vw);
    }

    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
