 html {
     font-size: 14px;  
 }

 body {
     background: black;
 }


 .container {
    background-image: url("../images/paper.png");
    font-family: Arial, Helvetica, sans-serif;
    /* color: white; */
    font-weight: bold;
    font-size: 1.25em;
    margin-top: 10px;
    margin-bottom: 20px;
    border-radius: 15px;
    padding-bottom: 50px;
}

div {
    padding: 10px;
    text-align: center;
}

#wordToGuess {
    font-size: 2.25em;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 15px;
}

#hint {
    font-size: 1.25em;
    font-style: italic;
    text-align: center;
    background-color: black;
    color: white;
    border-radius: 15px;
    padding: 30px;
}

#wrongGuesses {
    text-align: left;
    letter-spacing: 10px;
    margin-bottom: 15px;
    font-size: 1.25em
}

img {
    width: 60%;
    height: auto;
}

@media screen and (max-width: 800px) {
    img {
        width: 100%;
        height: auto;
    }
}