body {
    font-family: "Nunito", Verdana, Geneva, Tahoma, sans-serif;
    background-color: #353535;
    color: white;
}

h1 {
    font-size: 45px;
}

.title_section {
    margin: 40px 0px 20px 0px;
    display: flex;
    align-items: center;
    flex-direction: column;
    text-align: center;
}

.title_section p {
    margin: 0px 0px 0px 0px;
    padding-bottom: 30px;
}

.play_buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.play_buttons i {
    width: 100%;
    padding: 20px 0px;
}

.play_buttons button {
    background-color: #8fbc8f;
    border: none;
    color: #ffffff;
    padding: 15px 30px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 0px 10px;
    width: 160px;
    cursor: pointer;
}

.play_buttons button:hover {
    background-color: #1e492f;
    color: #a0d168;
}

.newgame_btn {
    background-color: #ff7f50;
    border: none;
    color: #ffffff;
    padding: 15px 45px;
    text-align: center;
    font-size: 18px;
    font-weight: bold;
    margin: 30px 0px;
    cursor: pointer;

}

.newgame_btn_off {
    display: none;
}

.selections {
    background-color: #777777;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.selections div {
    padding: 0 20px 0 20px;
    width: 200px;
}

.winner_reset {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-content: center;
    align-items: center;
}

.winner_reset_on {
    display: none;
}

.winner_message {
    font-size: 40px;
    font-weight: bold;
    padding: 30px 0px 5px 0px;
}

.final_score {
    font-size: 20px;
    padding: 0px 0px 15px;
}

.counters {
    background-color: #b8b8b8;
    color: #353535;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.counters p {
    margin-block-start: 0%;
    margin-block-end: 0%;
    font-size: 50px;
}

.counters h2 {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 25px;
    margin: 0;
    padding: 20px 0px;
}

.counters div {
    padding: 0 20px 0 20px;
    width: 200px;
}

footer {
    text-align: center;
    font-size: 12px;
    padding: 10px 0px 0px;
}