body {
    background: magenta;
    color: cyan;
    font-size: 16px;
}

h1 {
    font-size: 2rem;
    text-align: center;
}

h2 {
    font-size: 1.7rem;
    text-align: center;
    color: purple;
}

h3 {
    font-size: 1.5rem;
    text-align: center;
}

.locations {
    display: flex;
    flex-direction: row;
    row-gap: 2rem;
    column-gap: 2rem;
    justify-content: center;
}

a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1rem;

    &:hover {
        background-color: lightgray;
    }
}
