body {
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: black;
    background-repeat: no-repeat;
    background-size: cover;
    font-family: Monorale, "open sans", sans-serif;
}

main {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header {
    display: flex;
    justify-content: space-between;
    width: min(100rem, 90%);
    margin-top: 2rem;
}

.logoWrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo {
    height: 2.5rem;
    width: auto;
}

.posterWrapper {
    position: relative;
}

.poster {
    width: 100%;
}

.gradientOverlay {
    position: absolute;
    top: 0;
    height: 100%;
    width: 100%;
    box-shadow: 0 0 5rem 5rem black inset;
}

.covers {
    position: relative;
    display: flex;
    top: -10rem;
}

@media (max-width: 1443px) {
    .covers {
        position: relative;
        display: grid;
        top: -10rem;
        grid-template-columns: 50% 50%;
        width: 100%;
    }
}

.coverWrapper {
    display: flex;
    justify-content: center;
}

.cover {
    margin: 0.6rem;
}

.loginButton {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 20rem;
    height: 3rem;
    background-color: #E2001F;
    color: white;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
}

.chevron {
    margin-left: 0.5rem;
}

footer {
    position: relative;
    top: -5rem;
    width: 95%;
    display: flex;
    flex-direction: column;
}

p {
    color: white;
    font-weight: 700;
    margin: 0 0 1.5rem 0;
}

a {
    color: grey;
}
p > a {
    color: darkgrey;
    text-decoration: none;
    margin-right: 1rem;
}
.loginLink {
    text-decoration: none;
}

small {
    color: grey;
    margin-top: 1rem;
}

.rta {
    width: fit-content;
    margin-top: 1rem;
}
