.button {
  background-color: #2a91e6; /* Blue background */
  color: black; /* White text */
  border: 1px rgb(100, 99, 99); /* No border */
  border-style: solid;
  padding: 10px 20px; /* Padding around the text */
  font-size: 20px;
  cursor: pointer; /* Changes the mouse cursor to a hand when hovering over the button */
  border-radius: 5px;
  margin-top: 10px;
  margin-right: 10px;
}

.button:hover {
    background-color: rgb(125, 188, 240);
    text-decoration: none;
    color:black;
}