html {
    height: 100%;
}

body {
    user-select: none;
    background-color: black;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}

body>header {
    width: 90%;
    margin-top: 2em;
    display: flex;
    max-height: 12em;
    margin-left: 0.7em;
    margin-bottom: 2em;
}

.banner {
    max-width: 12em;
}

.plexFont {
    font-family: plexeina-bold, sans-serif;
}

.box {
    border: 1px solid white;
    transition: border 1s ease-out, color 500ms linear;
}

.box:hover {
    border-color: blueviolet;
    color: blueviolet;
}

main a {
    cursor: pointer;
    text-decoration: none;
    color: white;
    width: 50%;
}

main {
    display: flex;
    flex-direction: column;
    width: 100%;
    align-items: center;
    height: auto;
    overflow-y: auto;
}

main section article header {
    font-size: 3em;
    max-height: 3em;
    display: flex;
    flex-direction: row;
    max-width: 100%;
    justify-content: space-between;
    margin-bottom: 0.6em;
}

main section article header span {
    justify-content: start;
}

main section article header img {
    justify-content: end;
    max-height: 1em;
}

main section article {
    padding: 0.5em;
}

main>a>section>article>header {
    vertical-align: middle;
}

main section {
    margin-bottom: 0.7em;
}

@media only screen and (max-width: 900px) {
    .box {
        margin-left: 10px;
        margin-right: 10px;
    }

    main section article header {
        font-size: 2em;
        max-height: 2em;
    }

    main a {
        width: 100%;
    }

    body>header {
        width: 90%
    }

    main section article header img {
        max-height: 1em;
    }

    main {
        width: 100%;
    }
}