body{
    background-color: #121213;
    padding: 10px;
}
#button-holder{
    padding: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}
button{
    border-radius: 8px;
    padding: 6px 15px 6px;
    font-family: "nyt-franklin", sans-serif;
    font-size: 1rem;
    line-height: 1;
}
#word-holder{
    padding: 10px 10px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-family: "nyt-franklin", sans-serif;
    gap: 10px;
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: -15px;
}
#todays-word{
    height: 100%;
    font-size: 1.5rem;
    line-height: 1;
    background-color: #4d4f51;
    border-radius: 10px;
    border: none;
    color: white;
    padding: 5px;
}
#feedback{
    font-family: "nyt-franklin", sans-serif;
    font-size: 1rem;
    min-height: 1rem;
    color: #cd4c4c;
    margin: auto;
    text-align: center;
}
#instruction-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}
#clear-button{

}
#instructions{
    font-family: "nyt-franklin", sans-serif;
    padding: 10px;
    font-size: 1.5rem;
    height: 1rem;
    color: white;
    text-align: center;
    margin: 0;
}
#bottom-holder{
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px 20px;
}
.wordle_container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    overflow: hidden;
}
#wordle {
    display: grid;
    grid-gap: 5px;
    grid-template-rows: repeat(6, 1fr);
    padding: 10px;
    min-width: min(250px, 100vw);
    width: 333px;
    height: 396px;
}
.wordle_row{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-gap: 5px;
    div{
        display: inline-flex;
        width: 100%;
        box-sizing: border-box;

    }
}
.cell_black{
    background-color: #787c7f;
}
.cell_black:hover{
    background-color: #6d7273;
}
.cell_green{
    background-color: #6ca965;
}
.cell_green:hover{
    background-color: #5e9558;
}
.cell_yellow{
    background-color: #c8b653;
}
.cell_yellow:hover{
    background-color: #b3a249;
}

#answers{
    display: grid;
    grid-gap: 5px;
    grid-template-rows: repeat(6, 1fr);
    padding: 10px;
    min-width: min(250px, 100vw);
    width: 333px;
    height: 396px;
}

.answer{
    display: flex;
    color: white;
    font-family: "nyt-franklin", sans-serif;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    line-height: 1;
}

