body {
    font-family: Arial, sans-serif;
    display: flex;
    padding: 0px;
    align-items: center;
    justify-content: center;
    height: 100vh;
    background-color: rgb(21, 14, 14);
    color: white;
  }
button {
    background-color: rgb(21, 14, 14);
    color: white;
    font-size: 15px;
    text-transform: uppercase;
    width: 50px;
    height: 50px;
    border-radius: 10px;
    border: solid 2px white;
    margin: 2px;
    cursor: pointer;
}
.button:hover{
    background-color: rgb(114, 100, 100);
}
.button-correct{
    cursor: unset;
    border: none;
    background-color: rgba(104, 203, 104, 0.1);
}
.button-false{
    cursor: unset;
    border: none;
    background-color: rgba(227, 71, 71, 0.1);
}
.container{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bot-container{
    width: 550px;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 2px solid white;
    padding: 5px;
    border-radius: 10px;
}
.top-container{
    width: 563px;
    display: flex;
    align-items: center;
    padding: 5px;
    border-radius: 10px;
    margin-bottom: 4px;
}
.attempts-container{
    border: 2px solid white;
    width: 150px;
    height: 100px;
    padding: 5px;
    border-radius: 10px;
    margin-right: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.img{
    height: 75px;
    width: 75px;
    margin: 0px;
}
.attempts{
    font-size: 12px;
}
.word-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    font-size: 20px;
    text-transform: uppercase;
    font-weight: bold;
    border: 2px solid white;
    width: 100%;
    height: 100px;
    padding: 5px;
    border-radius: 10px;
}
.top-word{
    display: flex;
}
.top-word{
    margin-bottom: 2px;
}
.top-word div{
    margin-left: 2px;
    margin-right: 2px;
    width: 25px;
    height: 25px;
    text-align: center;
    border-bottom: 2px solid white;
}