.title-bar {
    background-color: var(--orange);
}

.split {
    display: flex;
    gap: 2em;
    width: 100%;
    max-width: 80em;
}

.cover {
    z-index: 1;
    width: 100%;
    max-width: 25em;
    border-radius: 1em;
    object-fit: contain;
}

.description {
    background-color: var(--blue);
}

.description .button:hover {
    color: var(--blue);
}

@media screen and (max-width: 750px) {
    .split {
        flex-direction: column;
    }

    .cover {
        max-width: 100%;
    }
}