#exit-screen {
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

#exit-screen .content {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#exit-screen .window {
  width: 25vw;
  height: 20vh;
  background-color: #000;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

#exit-screen .text {
  color: #fff;
  text-align: center;
  font-size: 2rem;
}

#exit-screen .buttons {
  padding: 5px;
  display: flex;
  justify-content: space-between;
  justify-content: space-evenly;
  margin-top: 10px;
}

#exit-screen .button {
  background: rgba(255, 255, 255, 0.5);
  color: #000;
  width: 40%;
  border-radius: 5px;
  padding: 10px 20px;
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
}

#exit-screen .button.selected {
  background: #f47521;
  /* box-shadow: 0 0 25px 6px #f47521, 0 0 15px 6px #f47521 inset; */
}