@import url("https://fonts.googleapis.com/css2?family=Badeen+Display&family=Geist:wght@100..900&display=swap");

body {
  background-color: rgb(60, 63, 66);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  font-family: "Badeen Display", serif;
}

#gameLogo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: auto;
}

#startButton {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 20px 70px;
  font-size: 50px;
  cursor: pointer;
  background-color: transparent;
  color: white;
  border: 5px solid white;
  border-radius: 10px;
  transition: ease 0.2s;
  font-style: italic;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  font-family: "Badeen Display", serif;
}

#startButton:hover {
  font-size: 52px;
}

#pauseMenu {
  display: none;
  position: absolute;
  font-size: 50px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  color: white;
  z-index: 1000;
  font-style: italic;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border: #ffffff 5px solid;
}

#pauseMenu button {
  align-items: center;
  margin: 10px;
  padding: 10px 20px;
  color: white;
  background-color: transparent;
  font-size: 30px;
  cursor: pointer;
  font-family: "Badeen Display", serif;
  font-style: italic;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border: #ffffff 5px solid;
}

#pauseButton {
  position: absolute;
  top: 20px;
  left: 20px;
  padding: 5px 15px;
  font-size: 16px;
  cursor: pointer;
  background: transparent;
  color: white;
  font-style: italic;
  box-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  text-shadow: 10px 10px 10px rgba(0, 0, 0, 0.5);
  border: #ffffff 5px solid;
  border-radius: 5px;
  margin-right: 20px;
}

#blackHole {
  position: absolute;
  width: 150px;
  height: 150px;
  background-image: url("./images/blackhole.png");
  background-size: cover;
  border-radius: 50%;
  pointer-events: none;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

canvas {
  display: block;
  width: 100vw;
  height: 100vh;
}
