body {
  display: flex;
  justify-content: center;
  background-color: #7EC0EE;
  font-family: Rum Raisin;
}

.screen {
  width: 70vw;
  display: flex;
  flex-direction: column;
}

.header {
  height: 20vh;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-github {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16vh;
  height: 16vh;
  z-index: 10;

  font-size: 32px;
}

.header-fruit {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26vh;
  height: 16vh;

  font-size: 96px;
  color: #ff8000;
}

.header-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16vh;
  height: 16vh;

  font-size: 72px;
}

.header-swap {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 26vh;
  height: 16vh;

  font-size: 96px;
  color: #ff8000;

}

.header-linkedin {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16vh;
  height: 16vh;

  font-size: 32px;

}

.body {
  display: flex;
  justify-content: space-around;
  height: 70vh;
  align-items: center;
}

.body-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  height: 60vh;
}

.body-game-buttons {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 75px;
  width: 150px;
  border: 1px solid black;

  font-size: 28px;
  background-color: #ff6666;
  color: black;
}

.body-game-buttons:hover {
  transform: scale(1.1);
}

.body-music-toggle {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 50px;
  width: 50px;
  border: 1px solid black;

  background-color: #6600ff;
}

.body-music-toggle:hover {
  transform: scale(1.1);
}

#game-grid {
  width: 500px;
  height: 500px;
  background-color: #ff6666;
}

.grid {
  display: flex;
  border: 2px solid black;

}

.fruit-item {
  width: 60px;
  height: 60px;
  text-align: center;
  vertical-align: middle;
  border: 1px solid black;
}

#time-up {
  width: 496px;
  height: 496px;

  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;

  font-size: 48px;
  background-color: orange;
}

.body-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;

  height: 60vh;
}

.body-score {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 75px;
  width: 150px;
  border: 1px solid black;
  font-size: 28px;

  background-color: #ff6666;
}


.body-about-rules {
  display: flex;
  justify-content: center;
  align-items: center;

  height: 75px;
  width: 150px;
  border: 1px solid black;
  font-size: 28px;

  background-color: #ff6666;
}

.body-about-rules:hover {
  transform: scale(1.1);
}

.rules {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;

  font-size: 24px;
  color: black;
}

.rules-title {
  font-size: 36px;
  margin-bottom: 30px;
  margin-top: 20px;

}

.rules-start {
  font-size: 28px;
  margin-top: 30px;

}
