.home {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 100vh;
}

.home__poster {
    display: block;
    width: 80%;
    height: auto;
    max-height: calc(90vh - 10rem);
    max-width: 32rem;

    object-fit: contain;
}

.home__title {
    display: block;
    margin: 0;

    font-size: clamp(1rem, 7vw, 3rem);
    font-weight: bold;
    color: var(--color-brown);
}

.home__date {
    display: block;
    margin: 0;

    font-size: clamp(.5rem, 2vw, 0.75rem);
    text-transform: uppercase;
    letter-spacing: .1rem;
    font-weight: bold;
    line-height: 1;
    color: var(--color-brown-light);
}

.home__actions {
    padding-top: 3rem;
}
