@font-face {
    src: url("/src/simpsons.otf");
    font-family: 'Simpsons';
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    background: url("/img/stadium-bg.png");
    background-size: cover;
    color: #FFF;
    text-align: center;
    font-family: "Roboto", sans-serif;
}

h1, h2, h3 {
    font-family: 'Simpsons', sans-serif;
}

.logo {
    width: 150px;
    
}

.container {
    background: #000000B8;
    border-radius: 10px;
    padding: 10px 20px;
    max-width: 444px;
}

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

.score {
    background: #080001;
    border-radius: 10px;
    font-family: 'Cursed Timer ULiL', sans-serif;
    color: #F94F6D;
    font-size: 3em;
    padding: 8px 16px;
    margin-bottom: 20px;
}

.leader {
    color: #F59E0B;
}

.btn-container {
    display: flex;
    justify-content: space-between;
    gap: 5px;
}

.control-btns {
    margin-top: 20px;
}

button {
    cursor: pointer;
    border-radius: 5px;
    padding: 5px 10px;
    background: #000000B8;
    color: #FFF;
    font-family: inherit;
    border: solid 2px #FFF;
}

#new-game-btn, #end-game-btn {
    width: 100%;
}

#status-msg {
    margin-top: 0;
    height: 1em;
}

#status-msg-txt {
    display: none;
}