body{
    font-family: Arial, Helvetica, sans-serif;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-collapse: collapse;
}
h1{
    font-family: "gf_EB_Garamond";
}
body > div {
    background-color: white;
    border: 1px solid lightgrey;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 8rem 6rem 8rem;
}
.flex-row{
    display: flex;
    flex-direction: row;
}
#grid-container{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(9, 1fr);
    row-gap: 8px;
    column-gap: 4px;
    margin-bottom: 42px;
}
.grid-item{
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    border: 1px solid lightgrey;
    height: 40px;
    width: 40px;
}
#submit-guess{
    height: 42px;
    padding: 0px 12px;
    font-weight: 600;
    margin-left: 4px;
}
#input-word{
    border: 1px solid lightgray;
    padding-left: 8px;
}
#feedback-message{
    font-weight: 700;
    font-size: 14px;
    color: blueviolet;
}

