body {
    text-transform: uppercase;
    background-color: rgb(32, 44, 36);
    color: #8ae234;
    /* color: #a40000ff */
    font-family: sans-serif;
    font-weight: bold;
}

#container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
}

#game {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    /* height: 100%;
    width: 100%; */
}

#figures {
    display: none;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#playerFigure {
    margin-right: -20px;
}

#bottom-section {
    display: flex;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    position: absolute;
    bottom: 50px;
    left: 0;
}

#score {
    font-size: 20px;
    margin-bottom: 10px;
    padding: 0 10px;
    margin: 0 10px;
    border-radius: 10%;
    border: 2px solid #8ae234;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
}

#start,
#restart {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#finalScore {
    font-size: 30px;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#finalScore h1 {
    font-size: 120px;
    margin-bottom: -20px;
}

#timer {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 10px;
    margin: 0 10px;
    border-radius: 10%;
    padding: 0 10px;
    border: 2px solid #8ae234;
}

#hit {
    margin-bottom: 10px;
    border-radius: 10%;
    font-size: 20px;
    margin: 0 10px;
    padding-left: 10px;
    border: 2px solid #8ae234;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#hitImg {
    height: 35px;
}

#message {
    text-align: center;
    margin-top: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

#gameOver {
    display: none;
    background-image: "./gameover.svg";
}

#input {
    font-size: 50px;
    display: none;
    flex-direction: column;
    align-items: center;
}

input {
    border: none;
    background: transparent;
    font-size: 50px;
    color: #8ae234;
    text-align: center;
    caret-color: transparent;
}

input:focus {
    outline: none;
    text-transform: uppercase;
}

::placeholder {
    /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: #8ae234;
    opacity: 1; /* Firefox */
    text-align: center;
    /* font-family: "Courier New", Courier, monospace; */
    font-family: sans-serif;
    font-weight: bold;
}

#nameInput {
    display: none;
    margin-top: 10px;
}

#scoreboard {
    display: none;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#scoreboard h3 {
    text-align: center;
}

#scoreboard p {
    text-align: center;
    margin: 5px 0;
}
