* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Anton", sans-serif !important;
  font-weight: bolder !important;
}

body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  background-color: #000;
  margin: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 1) 0%, rgba(0, 0, 0, 1) 78%);
  animation: scaleGradient 10s infinite;
  background-repeat: no-repeat;
  background-position: center;
}

@keyframes scaleGradient {
  0% {
    background-size: 100%;
  }
  50% {
    background-size: 150%;
  }
  100% {
    background-size: 100%;
  }
}

canvas {
  border: 3px solid #ffffff;
  background-color: #000000;
  width: 1100px;
  height: 500px;
}

.title {
  width: fit-content;
  padding-left: 1.5%;
  margin-bottom: 2%;
  font-size: 1.4rem;
  letter-spacing: 15px;
  font-weight: bolder !important;
  border-bottom: 6px solid;
  border-left: 5px solid;
  border-right: 1px solid;
  border-top: 1px solid;
  cursor: pointer;
  transition: all 0.5s;
}

.title:hover {
  color: white;
  background-color: #000;
  border-bottom: 6px solid white;
  border-left: 1px solid white;
  border-right: 5px solid white;
  border-top: 1px solid white;
}

.player-score {
  display: flex;
  width: 800px;
  margin-bottom: 2%;
  justify-content: space-between;
}

.S-R-Buttons {
  display: flex;
  margin-top: 2%;
  gap: 30px;
}

button {
  cursor: pointer;
  color: white;
  padding: 5px 100px;
  border: 3px solid white;
  background-color: black;
  font-size: 1.6rem;
  transition: all 0.5s;
}

button:hover {
  background-color: white;
  color: black;
  scale: 1.1;
}

#playerOneScore {
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.648);
  border-radius: 2px;
}

#playerTwoScore {
  border-radius: 2px;
  padding: 6px 10px;
  background-color: rgba(255, 255, 255, 0.648);
}

@keyframes scaleAnimation {
  0% {
    transform: scale(1);
    background-color: rgba(255, 255, 255, 0.648);
  }
  50% {
    transform: scale(1.5);
    background-color: rgba(0, 0, 0, 0.648);
    color: white;
  }
  100% {
    transform: scale(1);
    background-color: rgba(255, 255, 255, 0.648);
  }
}

.scale-animate {
  animation: scaleAnimation 0.5s ease-in-out;
}

.bx-pause-circle {
  position: absolute;
  font-size: 7em;
  opacity: 0.5;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
}

.bx-pause-circle.visible {
  display: block;
}

.MDJAminDiv {
  z-index: 4444;
  position: fixed;
  bottom: 5%;
  left: 2%;
}

.MDJAmin {
  text-decoration: none;
  border-bottom: 1px dashed rgb(204, 204, 204);
  border-top: 1px dashed rgb(204, 204, 204);
  /* border-bottom: 1px dashed rgb(44, 44, 44); */
  /* border-top: 1px dashed rgb(44, 44, 44); */
  padding: 4px 0;
  /* color: rgba(44, 44, 44, 0.525); */
  color: rgba(204, 204, 204, 0.414);
  font-family: monospace;
  font-style: italic;
  font-size: 1.1em;
  transition: all 0.5s;
}

.MDJAmin:hover {
  /* color: #000000; */
  color: white;
}
