div#slide[data-index="5"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr auto 1fr;


    h1 {
        margin-bottom: 2em;
    }

    & > :first-child, :nth-child(2) {
        align-self: flex-end;
    }

    & > :first-child {
        margin-bottom: 1em;
    }

    & > :last-child {
        grid-column: 1;
        grid-row: 3;
    }

    & > div.infobox {
        margin-left: 20%;
    }

    & > :nth-child(2) {
        margin-left: 10% !important;
        margin-right: 20%;
        grid-column: 2;
        grid-row: 2;
    }

    p.subtitle {
        text-align: end;
    }

    @media screen and (max-width: 1000px) {
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 4rem;
        padding-bottom: 2rem;
        gap: 1rem;

        & > div.infobox {
            margin: 0 10%;
        }

        h1 {
            margin-bottom: 1em;
        }
    }
}
