html {
    margin: 0;
    background-color: lightblue;
    background-image: url(imgs/background.jpg);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
    color: white;
    text-shadow: 2px 2px black;
    font-size: 1.15rem;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: hsla(0,0%,0%, 40%);
    margin-top: 12vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px;
    text-align: center;
}

#player-guess {
    border: 4px solid black;
    border-radius: 4px;
    background-color: white;
    color: black;
    font-size: 1rem;
    width: 100px;
    text-align: center;
}

button,
#submit {
    transition-duration: 0.4s;
    background-color: white;
    color: black;
    border: 2px solid black;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: bold;
  }
  
  button:hover {
    background-color: black;
    color: white;
  }

  #submit:hover {
    background-color: black;
    color: white;
  }

