html, body {
  overflow: hidden;
}


body {
  background-color: rgb(135, 15, 2);
}

p {
  width: 100%;
}

.menu {
  margin-top: 50px;
}

.menu-intro {
  width: 400px;
}

h2 {
  font-family: Barlow Condensed, Arial, Helvetica, sans-serif;
}

.start {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  width: 600px;
  flex-shrink: 0;
}

.text {
  font-family: gruppo, Arial, Helvetica, sans-serif;
  font-weight: 600;
  text-align: center;
  color: aliceblue;
}

.info-text {
  font-family: 'Courier New', Courier, monospace;
  font-weight: 600;
}

.guide {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 50px;
  height: 600px;
  width: 550px;
  background-color: rgb(248, 255, 207);
  position: absolute;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: transform 0.15s, opacity 0.15s;
}

.open-guide {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

h2 {
  display: block;
}

.info-group {
  display: flex;
  justify-content: space-evenly;
  align-content: center;
  height: 100px;
  width: 550px;
}

.info.turnaway {
  background-color: rgb(182, 182, 182);
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info.kill {
  background-color: rgb(231, 81, 57);
  width: 200px;
  height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.info-text {
  text-align: center;
}

.symbol {
  height: 75px;
}

button {
  font-family: Barlow Condensed, Arial, Helvetica, sans-serif;
  border-style: none;
  cursor: pointer;
}

.button-guide {
  font-size: 20px;
  font-weight: 600;
  padding: 0px;
  background-color: rgb(255, 170, 0);
  width: 100px;
  height: 30px;
}

.guide-close {
  background-color: rgb(161, 213, 4);
  margin-top: 5px;
  font-weight: 500;
  width: 50px;
  height: 25px;
}

.guide-close:hover {
  background-color: rgb(184, 227, 57);
}

.button-guide:hover {
  background-color: rgb(255, 184, 127);
}

.button-guide:active {
  background-color: rgb(212, 85, 0);
}

.button-play {
  font-size: 40px;
  padding: 0px;
  width: 100px;
  height: 50px;
  background-color: rgb(49, 186, 25);
  margin-top: 20px;

  transition: background-color 0.1s;
}

.button-play:hover {
  background-color: rgb(153, 204, 0);
}

.button-play:active {
  background-color: rgb(223, 15, 0);
}