@import url("https://fonts.googleapis.com/css2?family=Raleway&family=Updock&display=swap");

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

body {
  color: black;
  width: 100vw;
  min-height: 100vh;
  padding: 30px;
}

.container {
  display: none;
  flex-direction: column;
  align-items: center;
}

.intro-img {
  width: 100px;
  margin-bottom: 20px;
}

.header {
  font-family: "Updock", cursive;
  font-size: 48px;
  text-align: center;
  margin-bottom: 20px;
  line-height: 90%;
}

.hint-img,
.map {
  width: 90vw;
  margin-bottom: 10px;
}

.text {
  font-family: "Raleway", sans-serif;
  text-align: center;
  margin-bottom: 10px;
}

.password {
  font-weight: bold;
}
.active {
  display: flex;
}

.hints-header {
  font-family: "Updock", cursive;
  font-size: 36px;
  text-align: center;
  margin: 20px auto;
}

.hints-button {
  padding: 5px;
  text-transform: uppercase;
  font-size: 16px;
  border: none;
  color: white;
  font-weight: bold;
  width: 50vw;
  margin-bottom: 10px;
}

.hints-button:disabled {
  background: grey;
}

.hints-container {
  display: flex;
  flex-direction: column;
  padding: 15px 30px;
  justify-content: center;
  width: 100vw;
  margin-bottom: 20px;
  align-items: center;
}

.first-input {
  width: 20vw;
  height: 20vw;
  font-size: 48px;
  text-align: center;
  box-shadow: 0px 0px 4px 0px white;
}

.first-input:nth-child(1) {
  border: 3px solid #d8001a;
}

.first-input:nth-child(2) {
  border: 3px solid #441f68;
}

.first-input:nth-child(3) {
  border: 3px solid #00a338;
}

.main-btn {
  padding: 10px;
  text-transform: uppercase;
  font-size: 18px;
  margin-top: 20px;
  border: none;
  color: white;
  font-weight: bold;
}

.hint-container,
.part-conatiner {
  display: none;
}

.hint-container.active,
.part-conatiner.active {
  display: flex;
  flex-direction: column;
}

.input {
  width: 70vw;
  height: 10vw;
  padding: 10px;
  font-size: 28px;
  text-transform: uppercase;
  text-align: center;
}

.img {
  margin-bottom: 20px;
  width: 90vw;
}

.hints-text {
  font-family: "Raleway", sans-serif;
  text-align: center;
  font-size: 16px;
  margin-bottom: 10px;
}

.pop-up {
  position: relative;
}

.pop-up.active {
  color: black;
}

.pop-up .text {
  margin: 0;
  padding: 10px;
}

.digit {
  font-size: 28px;
}

.restart-btn {
  position: fixed;
  top: 0;
  right: 0;
  border: none;
  padding: 5px;
  text-transform: uppercase;
  font-size: 10px;
  border: none;
  background-color: grey;
  color: white;
  font-weight: bold;
  margin-bottom: 50px;
}

a {
  color: #d8001a;
  text-decoration: none;
  font-size: 20px;
  font-weight: bold;
}
