p {
  color: white;
  text-align: center;
  font-style: initial;
}

h1 {
  color: white;
}

.zoom {
  transition: 0.5s;
  font-size: inherit;
}

.alink:link {
  color: red;
  background-color: transparent;
  text-decoration: underline;
}

.alink:visited {
  color: white;
  background-color: transparent;
  text-decoration: underline;
}

.alink:hover {
  color: red;
  background-color: transparent;
  text-decoration: underline;
  transition: 0.5s;
}

.alink:active {
  color: brown;
  background-color: transparent;
  text-decoration: underline;
}

.imgbox {
  transition: all 0.5s;
  width: inherit;
  height: inherit;
  box-shadow: 0px 0px 50px lightblue;
}

.imgbox:hover {
  transform: scale(1.1);
}

.imgbox:hover+.zoom {
  padding-top: 1%;
  transform: scale(1.5);
}

.body {
  text-align: center;
  color: black;
  background-color: black;
}

.calcButton {
  height: 50px;
  width: 50px;
  color: white;
  text-align: center;
  line-height: 50px;
  background-color: gray;
  border-radius: 50%;
  display: inline-block;
  font-size: large;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.calcButton0 {
  height: 50px;
  width: 100px;
  color: white;
  text-align: left;
  padding-inline: 18px;
  line-height: 50px;
  background-color: gray;
  border-radius: 50px;
  display: inline-block;
  font-size: large;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.calcbox {
  margin-inline: auto;
  max-width: max-content; 
  background-color: black;
  padding: 1%;
  border-radius: 15px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
  box-shadow: 0px 0px 35px lightblue;
}

.grid-container {
  display: grid;
  grid-template-columns: 50px 50px 50px 50px;
  grid-template-rows: auto auto auto auto;
  gap: 5px 5px;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}

.grid-item {
  display: inline-grid;
  -webkit-user-select: none; /* Safari */
  -ms-user-select: none; /* IE 10 and IE 11 */
  user-select: none; /* Standard syntax */
}