
span {
  display: inline-block;
  padding: 5px;
}

.mybutton {
  display: inline;
  padding: 5px;
  margin: 10px;
  font-size: 20px;
  font-family: sans-serif;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  outline: none;
  color: #fff;
  background-color: blue;
  border: none;
  border-radius: 10px;
  box-shadow: 0 9px #999;
}

.mybutton a {
  text-decoration: none;
  color: #fff;
}

.mybutton:hover {
  background-color: red;
  text-decoration: none;
  color: #fff;
}

.mybutton:active {
  transform: translateY(4px);
  text-decoration: none;
  color: #fff;
}

.mybutton:visited {
  text-decoration: none;
  color: #fff;
}

