.recommendations {
    float: right;
}

@media screen and (max-width: 40rem) {
    .recommendations {
        float: none;
        width: auto;
    }
}

section {
    padding: 1rem;
}

section.thingy {
    position: relative;
    background-color: var(--dark);
    color: var(--light);
}

section.thingy {
    box-shadow: 0 0 0 100vmax var(--dark);
    clip-path: inset(0 -100vmax);
}

button.random {
    display: flex;
    align-items: center;
    height: 3rem;
    padding: 0.1rem 0.5rem;
    margin: auto;
    background-color: var(--accent);
    border: 0.1rem solid var(--light);
    border-radius: 1.5rem;
    color: var(--light);

    font-family: inherit;
    font-weight: 500;
    font-size: 2rem;

    cursor: pointer;
}

button.random img {
    height: 70%;
    margin: 0 0.5rem;
}