body {
    background: rgb(10, 10, 10);
    color: rgb(200, 200, 200);
    font-family: monospace;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    height: 100vh;
    margin: 0 auto;
}

h1 {
    position: absolute;
    top: 1em;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    background: darkorange;
    border-radius: 8px;
    color: rgb(10 10 10);
    padding: 0.25em;
    margin: 0 auto;
    margin-bottom: 0.5em;
    margin-top: 1em;
    padding-inline: 0.5em;
}

.game-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 18rem;
    height: 12rem;
    padding: 1.25em;
    border-radius: 20px;
    box-shadow: 0 0 2em darkorange;
}

.game-fixture {
    position: absolute;
    bottom: 4em;
    margin-bottom: 1.25em;
    border-radius: 20px;
    background: rgb(200 200 200 / 0.3);
    padding: 1em;
    width: fit-content;
    font-size: 1rem;
}

.game-part {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.game-part span {
    margin-left: 0.5em;
    font-size: 1.3rem;
}

.score {
    color: darkorange;
    font-variant-numeric: tabular-nums;
}

.selection {
    color: darkorange;
}

#buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
}

#buttons h4 {
    width: 100%;
}

#buttons button {
    background: none;
    border: none;
    font-size: 6rem;
    transition: all 0.2s ease-in-out;
}

#buttons button:hover {
    scale: 1.2;
}

@keyframes bounce {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
    100% {
        transform: translateY(0);
    }
}

.bounce {
    animation: bounce 0.3s forwards ease-in-out;
}

.reset-btn {
    position: absolute;
    bottom: 1em;
    /* right: 0.25em; */
    width: fit-content;
    font-size: 1rem;
    padding: 1em;
}

.reset-btn button {
    font-weight: bold;
    border: none;
    border-radius: 20px;
    background: rgb(200 200 200 / 0.7);
    padding: 0.5em;
    transition: all 0.2s ease-in-out;
}

.reset-btn button:hover {
    transform: translateY(0.2em);
}