body {
    background-color: #000000;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

img {
    width: 2rem;
    height: 2rem;
    vertical-align: middle;
}

/*Start Screen */
#start-container {
    margin: 5rem auto;
    text-align: center;

}

#start-btn {
    height: 5rem;
    width: 15rem;
    font-size: x-large;

}


/* Game Logistics */

#game-title {
    text-align: center;
    font-size: 3rem;
    font-weight: 600;
    color: #000000;
    background-color: #Ffff00;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#game {
    display: none;
    max-width: 500px;
    max-height: 400px;
    background-color: #Ffff00;
    color: #000000;
    margin: 5rem auto;
    padding: 1rem;
    align-items: center;
    flex-direction: column;
    border-radius: 10px;
}

/* Lives and the Hints */

#guesses {
    display: flex;
    flex-direction: column;
    width: 300px;
    align-items: center;
    justify-content: center;
    border: 1px solid black;
    border-radius: 10px;
}

#count {
    display: inline-block;
    max-width: 30px;
    border: none;
    background-color: #Ffff00;
    font-weight: 600;
}

#life-count {
    height: 2rem;
    margin-top: 10px
}

#text {
    display: flex;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

/* Inputs/Buttons */
#input-container {
    margin: 10px;
}

#guess-input {
    border: 1px solid grey;
    border-radius: 10px;
    height: 25px;
}

.btn {
    height: 2rem;
    width: 5rem;
    cursor: pointer;
    color: #0a0a23;
    background-color: #feac32;
    background-image: linear-gradient(#fecc4c, #ffac33);
    border: 3px solid #feac32;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#submit-btn {
    border-radius: 7px;
}

.btn:hover {
    background-image: linear-gradient(#e0cb94, #ffac33);
}

.btn:active {
    background-image: linear-gradient(#ede8da, #ffac33);
}

#restart-btn {
    display: none;
    width: 6rem;
    border-radius: 7px;
}