* {
  box-sizing: border-box;
}

body {
  padding: 0;
  margin: 0;
  background-color: #34495e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80vh;
  overflow: hidden;
}

h1 {
  margin: 20px 0 0;
}

.img-container {
  fill: transparent;
  stroke: white;
  stroke-width: 4px;
  stroke-linecap: round;
}

/* hide the body parts */

.body-parts {
  display: none;
}

/* game-container set up */
.game-container {
  padding: 20px 30px;
  position: relative;
  margin: auto;
  height: 350px;
  width: 450px;
}

/* wrong-word-container set up */

.wrong-letter-container {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.wrong-letter-container h2 {
 margin: 0 0 5px;
}

.wrong-letter-container span {
 font-size: 24px;
}

/* display words */
.word {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

/* letters */
.letter {
  border-bottom: 3px solid #2980b9;
  display: inline-flex;
  font-size: 30px;
  align-items: center;
  justify-content: center;
  height: 50px;
  width: 20px;
  margin: 0 3px;
}

/* popup container */
.popup-container {
  background-color: rgba(0, 0, 0, 0.3);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  align-items: center;
  justify-content: center;
}

/* popup */
.popup {
  background: #2980b9;
  border-radius: 5px;
  box-shadow: 0 15px 10px 3px rgba(0, 0, 0, 0.1);
  padding: 20px;
  text-align: center;
}

.popup button {
  cursor: pointer;
  background-color: #ffffff;
  color: #2980b9;
  border: 0;
  margin-top: 20px;
  padding: 12px 20px;
  font-size: 18px;
}

.popup button:active {
  transform: scale(0.9);
}

.popup button:focus {
  outline: 10;
}

/* notification */

.notification-container {
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 10px 10px 0 0;
  padding: 15px 20px;
  position: absolute;
  bottom: -50px;
  transition: transform 0.3s ease-in;
}

.notification-container p{
  margin: 0;
}

.notification-container.show {
  transform: translateY(-100px);
}