* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Courier New', Courier, monospace;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding: 20px;
    background-color: rgba(244, 58, 58, 0.986);
    color: #010000;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: center;
}

p {
font-size: 1.1rem;
margin-bottom: 20px;
text-align: center;
}

#word-display,
#used-letters,
#remaining-guesses,
#game-status {
    font-size: 1.75rem;
    text-align: center;
}

#guess-input {
    padding: 10px;
    font-size: 1rem;
    width: 200px;
    text-align: center;
    margin-right: 10px;
}

#game-container {
display: flex;
flex-direction: column;
align-items: center;
justify-content: flex-start;
gap: 20px;
width: 100%;
max-width: 869px;
border-style: initial;
border-width: 7px;
background-color: rgba(0, 0, 255, 0.721);
color: white;
}

#guess-button {
    border-radius: 4px;
  background-color: orange;
  border: none;
  color: #fff;
  text-align: center;
  font-size: 32px;
  padding: 16px;
  width: 220px;
  transition: all 0.5s;
  cursor: pointer;
  margin: 36px;
  box-shadow: 0 10px 20px -8px rgba(0, 0, 0,.7);
}

#guess-button:hover {
    background-color: lightgreen;
    cursor: pointer;
    display: inline-block;
    position: relative;
    transition: 0.5s;
}

footer {
    border-style: inset;
    display: flex;
    background-color: lightblue;
    position: fixed;
    color: black;
    left: 100;
    bottom: 0;
}
