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

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

main {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: var(--page-width);
    width: 100%;
    padding: 20px;
}

article, aside  {
    margin: 0;
}

article {
    flex-basis: calc(35% - 10px);
    width: calc(35% - 10px);
    position: sticky;
    align-self: start;
} 

article img {
    width: 100%;
    height: auto;
}

article h1,
article h5 {
    display: none;
}

aside {
    flex-basis: calc(65% - 10px);
    width: calc(65% - 10px);
}

aside section {
    margin: 20px 0;
}

article h1,
aside h1 {
    font-size: 1.5rem;
    font-weight: 400;
    padding: 0;
    margin: 0;
    color: black;
    text-transform: uppercase;
}

article h5,
aside h3,
aside h5 {
    font-size: 1rem;
    font-weight: 300;
    padding: 0;
    margin: 0;
    color: black;
    text-transform: uppercase;
}

aside section h3 {
    font-weight: 400;
    margin: 15px 0 0 0;
}

aside p {
    margin: 0;
    padding: 0;
}

aside section a {
    color: black;
    opacity: var(--opacity-1);
}
aside section a:hover {
    opacity: 1;
}

aside section b,
aside section strong {
    font-weight: 400;
}

@media screen and (max-width: 650px) {
    main {
        flex-direction: column;
        padding: 10px 20px;
    }

    article, aside {
        flex-basis: 100%;
        width: 100%;
    }

    article {
        position: static;
        display: flex;
        justify-content: center;
    }

    aside h1,
    aside h5 {
        display: none;
    }

    article img {
        width: 70%;
    }
}

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

    article img {
        width: 100%;
    }
}