body {
    background-color: #f4e0c9;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-direction: column;
    align-items: center;
    font-family: cursive, monospace;
}
h1 {
    text-align: center;
    color: #000000;
    font-size: 30px;
    text-shadow: 2px 2px 3px #636363c7;
}
h2 {
    text-align: center;
    color: rgb(202, 0, 0);
    font-size: 25px;
}
.game {
    display: block;
    margin: 0px;
    border: solid px rgba(255, 255, 255, 0.75);
    box-shadow: 0px 0px 20px 3px #65656594;

}
.menu {
    background-color: #ffffff;
    display: flex;
    justify-content: space-around;
    align-items:end;
    margin: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: solid 2px black;
    border-radius: 10px;
    min-height: 200px;
    width: 400px;
    height: fit-content;
}
.themes {
    background-color: #ffffff;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    flex-direction: column;
    display: none;
    margin: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: solid 2px black;
    border-radius: 10px;
    width: 400px;
    height: 200px;
}

.gameover {
    background-color: #ffffff92;
    display: flex;
    justify-content: center;
    align-items: center;
    display: none;
    margin: 0px;
    padding: 0px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    position: absolute;
    border: solid 2px black;
    border-radius: 10px;
    width: 400px;
    height: fit-content;
    padding-top: 50px;
    padding-bottom: 50px;
    padding-left: 10px;
    padding-right: 10px;
    /*margin-top: 50px;
    margin-bottom: 50px;
    min-width: 200px;*/
}
.modes{
    border-radius: 50px;
}
.selected {
    height: 50px;
    width: fit-content;
    padding: 10px;
    background-color: #69696931;
    border-radius: 30px;
    margin-top: 10px;
    margin-bottom: 10px;
}
.score {
    position: absolute;
    top: 10px;
    left: 0px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px #c5c5c594;
    background-color: rgba(255, 255, 255, 0.75);
    margin: 10px;
    min-width: 100px;
    text-align: center;
}
.streak {
    position: absolute;
    top: 10px;
    right: 0px;
    padding: 10px;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 2px #c5c5c594;
    background-color: rgba(255, 255, 255, 0.75);
    margin: 10px;
    min-width: 100px;
    text-align: center;
}
.scoreboosteasy{
    background-color: rgb(177, 255, 138);
}
.scoreboostmedium{
    background-color: rgb(255, 237, 138);
}
.scoreboosthard{
    background-color: rgb(255, 138, 138);
}
.indent{
    margin: 0;
    margin-left: 25px;
    margin-right: 3px;
}