body{
    background-color: rgb(18,18,19);
    transition: ease-in-out 0.5s;
}

.darkmode-container{
    display: flex;
    justify-content: space-between;
}

#darkModeSwitch{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 110px;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}

#darkModeSwitch:hover{
    cursor: pointer;
}

.debug-div{
    color: white;
    width: 100%;
    display: flex;
    justify-content: center;
    transition: ease-in-out 0.3s;
}

.checkbox-label{
    color: white;
    transition: ease-in-out 0.3s;
}

.title{
    color: white;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 45px;
    transition: ease-in-out 0.3s;
}

.wordle-big-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 30px;
}

.wordle-small-container{
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.wordle-small-container div{
    color: white;
}

.input-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
    height: 100px;
}

.input-container input{
    width: 150px;
}

.input-container button{
    width: 150px;
}

.indivual-letter-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    justify-content: space-around;
    align-items: center;
}

.indivual-letter-container div{
    background-color: white;
    border: 1px solid grey;
    height: 60px;
    width: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2px 2px;
    font-size: 50px;
    text-align: center;
    font-family: 'Bebas Neue', cursive;
    transition: ease-in-out 0.3s;
}

#textInput{
    background-color: rgb(41, 41, 43);
    color: white;
    padding: 3px;
    transition: ease-in-out 0.3s;
}

#btn{
    background-color: rgb(18,18,19);
    color: white;
    padding: 3px;
    border-radius: 5px;
    transition: ease-in-out 0.3s;
}

.word-info{
    border: 1px solid white;
}

.keyboard-container{
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.keyboard-row{
    display: flex;
    flex-direction: row;
    justify-content: space-around;
}

.keyboard-row div{
    background-color: rgb(129,131,132);
    font-size: 35px;
    color: white;
    border-radius: 5px;
    padding: 7px 15px;
    margin: 2px 3px;
    font-family: 'Bebas Neue', cursive;
    transition: ease-in-out 0.3s;
}

.stats-container{
    width: 100%;
    display: flex;
    justify-content: space-around;
}

.stats{
    color: white;
    font-family: 'Roboto', sans-serif;
    font-weight: bold;
}