body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 100vh;
}

#wrapper {
    align-items: center;
    justify-content: center;
}


main {
    flex: 1;
    display: flex;
    flex-direction: column;
    max-width: var(--page-width);
    width: 100%;
    padding: 0 20px;
}

article {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    align-items: stretch;
    height: calc(100% - 40px);
}


article a,
section {
    flex: 1;
    background: black;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-decoration: none !important;
}

section {
    opacity: var(--opacity-2);
}

article a {
    margin: 10px 0;
}

article a:hover section {
    opacity: 1;
}

h2 {
    text-align: center;
    font-weight: 300;
    padding: 20px;
    color: white;
    text-transform: uppercase;
}

@media screen and (max-width: 550px) {
    main {
        padding: 0 15px;
    }

    article a {
        margin: 7.5px 0;
    }
}