@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
body {
  background: conic-gradient(orange, transparent, orange),
    linear-gradient(90deg, orangered,gold,transparent), radial-gradient(goldenrod,red);
  font-family: "Inter", Arial, Helvetica, sans-serif;
  text-align: center;
  color: white;
  display: grid;
  place-items: center; /* Center both horizontally and vertically */
  min-height: 100vh;
  margin: 0;
  transition: background 1s;
  cursor:none;
  user-select:none;
}
.changed {
  background: #111;
}
.admin {
  cursor: auto;
}
button {
  padding: 10px 15px;
  border: none;
  cursor: none;
  outline: none;
  transition: 0.3s;
  border-radius: 1000px;
  background: orangered;
  color: white;
}
button:hover {
  background: skyblue;
}
button:active {
  background: deepskyblue;
}
.listen {
  display: none;
}
.ad {
  width: 100%;
  display: none;
}
.popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #111;
  color: white;
}
