/*
  Copyright (c) 2024 Mo Tiltmann
  Licensed under the GNU General Public License v3 (GPLv3).
  See the LICENSE file for details.
*/

body {
  background-color: black;
  color: white;
}
button {
  width: 80px;
  height: 80px;
  border: none;
  border-radius: 50%;
  background-color: white;
  border-width: 2px;
  font-size: 20px;
  margin: 2px;
  color: black;
  padding: 1px 1px;
  cursor: pointer;
}

button:active {
  background-color: gray;
}
/*
.Number-Button:hover {
  background-color: rgb(28, 157, 232);
}
*/
.strikethrough {
  opacity: 50%;
  text-decoration: line-through;
  text-decoration-thickness: 10%;
}
.link {
  text-decoration: none;
  font-family: 'Times New Roman', Times, serif;
  color: #0366d6;
  font-size: 13px;
}

.space {
  height: 100px;
}
.small-space {
  height: 20px;
}

#Clear-All-Button {
  height: 40px;
  width: 150px;
  border-radius: 20px;
  color: rgb(130, 0, 0);
}
#Clear-All-Button:active {
  color: rgb(228, 0, 0);
  background-color: rgb(94, 0, 0);
}

input {
  height: 40px;
  width: 250px;
  border: none;
  border-radius: 20px;
  text-align: center;
}
div {
  width: 840px;
}
#credits {
  font-family: 'Times New Roman', Times, serif;
  font-size: 15px;
}

.ActiveNumber {
  border-radius: 40%;
}