body {
    margin: 0;
    background: url("/img/bg.png");
    background-size: cover;
    background-color: #00000066;
    background-blend-mode: darken;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    margin: 20px;
    text-align: center;
    background: #FFFFFFA6;
    border-radius: 10px;
    padding: 10px 20px;
    min-width: 400px;
}

h1 {
    font-size: 1.5rem;
}

h2 {
    font-size: 1.25rem;
    margin-top: 0;
}

.logo {
    width: 120px;
}

.score {
    background: #080001;
    color: #F94F6D;
    border-radius: 5px;
    padding: 5px 10px;
    font-size: 3rem;
    font-family: 'Cursed Timer ULiL', sans-serif;
}

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

.score-container {
    margin: 10px 0;
}

.btn {
    border-radius: 5px;
    padding: 5px 10px;
    cursor: pointer;
    font-family: inherit;
}

.btn:hover {
    filter: brightness(0.85);
    transition: filter 0.85s;
}

.yellow-btn {
    border: solid 1px #c6af1f;
    background: #f8db27;
}

.blue-btn {
    background: #2f64d6;
    border: solid 1px #1c3c80;
    color: #FFF;
}

.game-controls {
    margin: 10px 0;
}

#status-el {
    height: 1em;
}

.highlight {
    color: goldenrod;
}