html {
  font-family: "sometype-mono";
  color: rgb(255, 255, 255);
}
body {
  background-color: rgb(0, 0, 0);
}
.button {
  font-size: 16px;
  cursor: pointer;
  padding: 5px 1px;
  text-align: center;
  white-space: nowrap;
}
.button2 {
  border-color: gray;
  border-radius: 12px;
  background-color: rgb(50, 50, 50);
  color: white;
  transition-duration: 0.4s;
}

.button2:hover {
  border-color: black;
  border-radius: 5px;
  background-color: RGB(0,0,200); 
  padding: 5px 3px;
  color: black;
  transition-duration: 0.4s;
}
