main {
    background: linear-gradient(to top, #0a0a0a, #121212);
    min-height: calc(100vh - 70px);
    margin: 0;
    padding: 50px 0;
}

main section {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    width: 90%;
    margin: 0 auto;
    gap: 20px;
}

.season {
    background-color: #111111;
    border: 1px solid #333333;
    padding: 5px;
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    flex-wrap: wrap;
}

main h1 {
    margin: 0 auto 50px auto;
    text-align: center;
    font-family: 'Antonio', sans-serif;
    font-weight: bold;
    font-size: 3em;
    color: white;
    line-height: 0.95;
}

main h2 {
    margin: 0;
    font-family: 'Antonio', sans-serif;
    font-weight: bold;
    font-size: 2em;
    color: #d92027;
    line-height: 0.95;
}

main p, main a {
    color: #9D9D9D;
    font-family: Inter, sans-serif;
    font-size: 1em;
    line-height: 1.2;
    width: 100%
}

main a {
    text-decoration: underline;
}

@media (min-width: 768px) {

    main p, main a {
        font-size: 1.25em;
    }

   main h2 {
        font-size: 2.4em;
    }

    .season div{
        margin: 0 auto;
        width: 100%;
    }

    main section {
        width: 50%;
    }

    .season {
        text-align: center;
    }

}