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

img {
  background: rgba(0, 0, 0, 0.1);
  padding: 15px;
  border-radius: 50%;
  width: 200px;
  margin-top: 50px;
}

body {
  text-align: center;
  background-image: linear-gradient(120deg, #0a396e, #7dbcda);
  color: white;
  font-family: "Bitter", serif;
  min-height: 100vh;
}

h1 {
  font-size: 100px;
}

h5, h6 {
  text-align: left;
}

button {
  background-color: #0a396e;
  /* Green */
  color: white;
  padding: 10px 10px;
  font-size: 16px;
  transition: all 0.3s ease;
  cursor: pointer;
  border-radius: 8px;
  border: none;
}
button:hover {
  opacity: 70%;
  color: #0a396e;
  background: white;
}

#submit-guess {
  color: #0a396e;
  background: white;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0px;
  border: none;
  padding: 0.3em;
}
#submit-guess:hover {
  background: #0a396e;
  color: white;
}

form {
  padding: 5px;
}
form input {
  padding: 0.5em;
  border: none;
  background: white;
}

.playPauseButton {
  color: white;
  position: absolute;
  top: 10px;
  right: 10px;
  border: 0px;
  background: none;
  transition: all 0.3s ease;
  border-radius: 12px;
  margin: none;
}
.playPauseButton:hover {
  background: none;
  color: white;
  box-shadow: white;
}

#how-button {
  position: absolute;
  top: 10px;
  right: 50px;
  display: inline-block;
}

#how-to-play {
  width: 40%;
  margin: auto;
  padding: 10px;
  background: rgba(0, 0, 0, 0.1);
}
#how-to-play span {
  display: flex;
  text-align: left;
}

.chances-box {
  padding-bottom: 10px;
}

.guess-col {
  font-size: 20px;
  justify-content: left;
}

#result-div {
  justify-content: center;
  display: flex;
}

#label-guess-col, #label-result-col, #label-attempt-col {
  width: 20%;
  padding: 15px;
  border: 3px solid white;
  font-weight: bold;
}

#error-p {
  text-align: center;
  color: red;
}

.guesses-container {
  display: flex;
  justify-content: center;
}

.guesses-list {
  min-width: 60%;
  list-style: none;
  display: table-column;
}

.guess-hint {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 3px solid white;
  padding: 10px;
}

li {
  text-align: center;
  width: 50%;
  color: white;
}

.difficulty-form {
  padding: 5px;
  display: flex;
  text-align: center;
  justify-content: center;
  align-items: center;
}
.difficulty-form input {
  color: red;
  margin: 0 10px 0 10px;
}

.timer-container {
  padding: 10px;
}

#instructions-difficulty li, #instructions-hint li {
  text-align: left;
  list-style: none;
  margin-left: 15px;
}