button {
    padding: 10px;
    background-color: white;
    color: black;
    width: 120px;

}

button:hover {
    background-color: red;
}

* {
    font-family: 'Merienda';font-size: 16px;
}

body {
    display:  flex;
    height: 500px;
    flex-direction: column;
    align-items: center;
}

.button-container {
    display: flex;
    justify-content: space-between;
    width: 400px;
}


.game-output {
    margin-top: 20px;
}

.round-score-info {
    margin-top: 20px;
    margin-bottom: 10px;
}

 .dark-mode-switch-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
    margin-right: 20px;
}

.dark-mode-text {
    margin-right: 12px;
    margin-top: 1px;
}

.switch {
    display: inline-block;
    position: relative;
    width: 50px;
    height: 25px;
    border-radius: 20px;
    background: #dfd9ea;
    transition: background 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    cursor: pointer;
}
.switch::before {
    content: '';
    position: absolute;
    top: 1px;
    left: 2px;
    width: 22px;
    height: 22px;
    background: #fafafa;
    border-radius: 50%;
    transition: left 0.28s cubic-bezier(0.4, 0, 0.2, 1), background 0.28s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}
.switch:active::before {
    box-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 0 0 20px rgba(128,128,128,0.1);
}
input:checked + .switch {
    background: #72da67;
}
input:checked + .switch::before {
    left: 27px;
    background: #fff;
}
input:checked + .switch:active::before {
    box-shadow: 0 2px 8px rgba(0,0,0,0.28), 0 0 0 20px rgba(0,150,136,0.2);
}