header {
    display: flex;
    align-items: center;
    justify-content: center;

    /* width: 20vw; */
    width: 90vw;
    height: 4rem;
    border-radius: 1rem;
    border-color: gray;
    border-width: .125rem;
    border-style: solid;
    margin: auto;
    /* padding-left: 35vw;
    padding-right: 35vw; */
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: "NYT Franklin", Arial, sans-serif; /* Include fallback fonts */
    font-weight: 700;
}

.games {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

a {
    text-decoration: none;
}

.game {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 5rem;
    height: 5rem;
    background-color: grey;
    padding: 1rem;
    margin: 1rem;
    border-radius: 1rem;
    color: white;
    text-align: center;
}

img {
    height: 2rem;
    width: 2rem;
    margin: 1rem;
}