body {
    font-family: Arial, sans-serif;
    background-color: grey;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
}

.container {
    text-align: center;
    background-color: #9B2915;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

#submit-guess {
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10%;
    cursor: pointer;
    border-radius: 5px;
    background-color: rgba(0, 72, 255,0.9);
    color: white;
}

.dictChange{
    padding: 10px 20px;
    font-size: 18px;
    font-weight: bold;
    margin-top: 10%;
    cursor: pointer;
    border-radius: 5px;
    background-color: #1C110A;
    color: white;
}

.dictChange:hover{
    background-color: white;
    color: #1C110A;
}
#submit-guess:hover{
    background-color: white;
    color: rgba(0, 72, 255,0.9);
}

#guess{
    padding: 10px;
    font-size: 18px;
    margin-top: 10%;
    text-transform: uppercase;
}


.grid {
    display: grid;
    grid-template-columns: repeat(5, 55px);
    gap: 5px;
    justify-content: center;
    margin-top: 20px;
}
.cell {
    width: 50px;
    height: 50px;
    border: 2px solid black;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    text-transform: uppercase;
    background-color: white;
}
.correct {
    background-color: green;
    color: white;
}
.present {
    background-color: yellow;
    color: black;
}
.absent {
    background-color: grey;
    color: white;
}