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; */
}

a {
    text-decoration: none;
    color: black;
}

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


p {
    font-weight: 150;
}


.word-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.word-grid-row {
    display: flex;
    flex-direction: row;
}

.word {
    display:flex;
    justify-content: center;
    align-items: center;
    height: 5rem;
    width: 10rem;
    font-size: 1.25rem;
    font-weight: bold;
    margin: .25rem;
    background-color: lightgray;
    border-radius: .5rem;
    border-style: none;
}

#mistakes {
    display: flex;
    flex-direction: row;
    align-items: left;
}

#mistakes > * {
    margin: .5rem;
    color: gray;
}

button {
    background-color: white;
    border-radius: 2rem;
    border-style: solid;
    padding: 1rem;
    font-size: 1rem;
    border-width: 1px;
    margin: .25rem;
    color: black;
    border-color: black;
}