
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #ffffff;
    margin: 0;
    font-family: Arial, sans-serif;
}

#game {
    text-align: center;
}

#board {
    display: grid;
    grid-template-columns: repeat(5, 40px);
    gap: 10px;
    margin-bottom: 20px;
}

.tile {
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: white;
    border: 0.5px black ;
    border: 1px solid #ccc;
    font-size: 18px;
    text-transform: uppercase;
    border-radius: 16%;
}

.correct {
    background-color: rgb(90, 255, 90);
    color: rgb(0, 0, 0);
}

.present {
    background-color: rgb(255, 196, 0);
    color: black;
}

.absent {
    background-color: gray;
    color: white;
}

#guessInput {
    font-size: 18px;
    text-transform: uppercase;
    width: 90%;
    margin-bottom: 20px;
}


.sub{
    font-size: larger;
    background-color: rgb(0, 118, 94);
    color: rgb(255, 255, 255);
}


.pl{
    font-size: larger;
    background-color: rgb(70, 0, 127);
    color: rgb(255, 255, 255);
}