body {
  width: 100%;
  margin: 0;
  padding: 0;
  background: #d1382f;
  font-family: "Roboto", Arial, sans-serif;
}

.winner {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(150, 203, 100, 0.8);
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 100;
  text-align: center;
}
.winner .winnerScore {
  font-size: 2.5rem;
}
.winner div {
  font-size: 4rem;
  font-weight: bold;
  text-transform: uppercase;
  color: purple;
}
.winner .button {
  border: 5px solid purple;
  padding: 1rem 2rem;
  font-size: 2rem;
  margin: 3rem 0 0;
}
.winner .button:hover {
  border-color: darkblue;
  color: darkblue;
  background: purple;
}

.wrapper {
  width: 100%;
  min-height: 100vh;
  max-width: 1000px;
  margin: 0 auto;
  background: white;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  justify-content: center;
  position: relative;
  padding: 2rem 0;
}
.wrapper h1 {
  color: darkblue;
  width: 100%;
  text-align: center;
  margin: 0 0 1rem;
}
.wrapper .scoreGuessWrapper {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 0 2rem;
}
.wrapper .scoreGuessWrapper .toFind,
.wrapper .scoreGuessWrapper #score {
  text-align: center;
  border-bottom: 4px solid teal;
  margin: 10px;
  padding: 10px;
  box-sizing: border-box;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1.2rem;
  color: teal;
  width: 100%;
}
.wrapper .scoreGuessWrapper .toFind {
  max-width: 500px;
}
.wrapper .scoreGuessWrapper #score {
  border: 4px solid teal;
  max-width: 130px;
}
.wrapper svg {
  margin: 0 2rem;
  width: calc(100% - 4rem);
}
.wrapper path {
  fill: #d3d3d3;
}
.wrapper path:not(.teal):not(.red):hover {
  fill: #a3a3a3 !important;
  cursor: pointer;
}
.wrapper path.teal {
  fill: teal;
}
.wrapper path.teal:hover {
  fill: darkblue;
}
.wrapper path.red {
  fill: red;
}
.wrapper path.red:hover {
  fill: darkorange;
}
.wrapper #path67 {
  fill: none !important;
  stroke: #a9a9a9 !important;
  cursor: default;
}
.wrapper .blink {
  animation: blink 0.5s infinite linear;
}
.wrapper .teal {
  fill: teal;
}
.wrapper .teal:hover {
  fill: darkblue;
}

#footer {
  position: absolute;
  bottom: 0;
  color: #6d6d6d;
  width: 100%;
  padding: 1rem 2rem;
}
#footer a {
  text-decoration: none;
  color: inherit;
  margin-right: 1rem;
}

@keyframes blink {
  0% {
    fill: red;
  }
  50% {
    fill: #d3d3d3;
  }
}

/*# sourceMappingURL=style.css.map */
