body {
    min-height: 100dvh;
    background-color: var(--bg-gray);
}

#root {
    background-color: var(--bg-gray);
}

.public {
    padding: 48px 24px;
    box-sizing: border-box;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 8px;

    .info {
        padding: 32px 16px;
        border: 2px solid black;
        background-color: white;

        .info-title {
            font-size: 24px;
        }

        .info-year {
            font-size: 16px;
            color: var(--gray);
        }
    }

    .poster {
        aspect-ratio: 2/3;
        width: 100%;
        border: 2px solid black;
        box-sizing: border-box;
        background-size: cover;
        background-position: center;
    }
}

.btn {
    font-size: 16px;
    padding: 16px;
    box-sizing: border-box;
}