/* SPLASH SCREEN CSS INCIAL SETTINGS */

#splashScreen {
  background-color: black;
  height: 720px;
  width: 1280px;
  position: relative;
  background-position: center;
  background-size: cover;
  user-select: none;
}

/* GAME OVER SCREEN AND GAME SCREEN CSS INCIAL SETTINGS */
#gameOverScreen,
#gameScreen {
  height: 720px;
  width: 1280px;
  display: none;
  position: relative;
  user-select: none;
  background-color: #457c25;
  /* background-position: center;
  background-size: cover; */
}

body {
  font-family: Helvetica, sans-serif;
}

/* TO CENTER THE GAME IN SCREEN */
.centerFrame {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 98vh;
  width: 98vw;
}

/* GAMEBOX INICAL SETTINGS HERE IS WERE THE GAME TAKES PLACE */
#gameBox {
  background-color: black;
  height: 720px;
  width: 1280px;
}

/* BUTTON AND INSCTRUCTIONS FOR THE SPLASH SCREEN */
#buttonAndInstrctions {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.767),
    rgba(0, 255, 0, 0)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 660px;
  height: 200px;
  top: 480px;
  left: 370px;
  border-radius: 40px;
  user-select: none;
}

h1 {
  margin-top: 10px;
  font-size: 2.2rem;
  text-align: center;
  user-select: none;
}

/* START/RESTART BUTTON STYLE SETTINGS */
#startButton,
#restartButton {
  width: 220px;
  height: 50px;
  border: #000000;
  outline: none;
  color: #000000;
  background: #ffffff;
  border-radius: 40px;
  transition: 1s;
  font-weight: bold;
  font-size: 1.5rem;
}

/* START/RESTART BUTTON HOVER STYLE SETTINGS */
#startButton:hover,
#restartButton:hover {
  color: #ffffff;
  outline: auto;
  background: #457c25;
  border-color: aqua;
}

/* START/RESTART BUTTON WHEN CLICK STYLE STYLE SETTINGS */
#startButton:active,
#restartButton:active {
  background: #050e00;
  width: 200px;
  height: 40px;
}

/* BUTTON AND COMMENT FOR THE GAME OVER SCREEN */
#buttonAndFrase {
  background: linear-gradient(
    to bottom,
    rgba(255, 255, 255, 0.767),
    rgba(0, 255, 0, 0)
  );
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  width: 350px;
  height: 250px;
  top: 340px;
  left: 820px;
  border-radius: 40px;
  user-select: none;
}

/* SUPER BEAUTIFULL GAME SCORE PANEL */
#gameScore {
  margin: 20px;
  padding: 0px 30px;
  top: 0px;
  left: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.226);
  border-radius: 40px;
  backdrop-filter: blur(5px);
}

/* GAME PANEL TEXT SETTINGS */
#gameScore h2 {
  color: white;
}
