@import url('https://fonts.googleapis.com/css2?family=Nunito&display=swap');

:root {
  --background-color: #34495e;
  --svg-stroke-color: #fff;
  --text-color: #fff;
  --border-bottom-color: #2980b9;
  --popup-background: rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

body {
  background-color: var(--background-color);
  color: var(--text-color);
  font-family: 'Nunito', sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 80vh;
  margin: 0;
  overflow: hidden;
}

h1 {
  margin: 20px 0 0;
}

.game-container {
  padding: 20px 30px;
  position: relative;
  margin: auto;
  height: 350px;
  width: 450px;
}

.figure-container {
  fill: transparent;
  stroke: var(--svg-stroke-color);
  stroke-width: 4px;
  stroke-linecap: round;
}

.figure-part {
  display: none;
}

.wrong-letters-container {
  /* position within the game container */
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  text-align: right;
}

.wrong-letters-container p {
  margin: 0 0 5px;
}

.wrong-letters-container span {
  font-size: 24px;
}

.word {
    display: flex;
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%)
}

.letter {
    border-bottom: 3px solid var(--border-bottom-color);
    display: inline-flex;
    font-size: 30px;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    height: 50px;
    width: 20px;
}

.popup-container {
    background-color: var(--popup-background);
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    right: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.popup {
    background: var(--border-bottom-color);
    border-radius: 4px;
    box-shadow: 0 15px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
}

.popup button {
    cursor: pointer;
    background-color: var(--svg-stroke-color);
    color: var(--border-bottom-color);
    border: none;
    margin-top: 20px;
    padding: 12px 20px;
    font-size: 12px;
}

.popup button:active {
    transform: scale(0.98);
}

.popup button:focus {
    outline: none;
}

.notification-container {
    background-color: var(--popup-background);
    border-radius: 10px 10px 0 0;
    padding: 10px 20px;
    position: absolute;
    bottom: -50px;
    transition: transform 0.3s ease-in-out;
}

.notification-container p {
    margin: 0;
}

/* ease in notification when show class is added to container class */
.notification-container.show {
    transform: translateY(-50px);
}
