button.bluewave {
  background: rgb(27,57,95);
background: linear-gradient(0deg, rgb(1, 38, 84) 0%, 
  rgba(51,139,239,1) 50%,
  rgb(1, 38, 84) 100%);
  border: none;
  font-size: 20px;
  color: aliceblue;
  padding: 10 40;
  height: 80px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 2px 2px 0px #000000;
  font-weight: normal;
  cursor: pointer;
  width: 100%;
}

button.Greenwave {
  background: rgb(0, 18, 97);
  background: linear-gradient(
    0deg,
    rgb(0, 99, 44) 0%,
    rgb(0, 170, 77) 50%,
    rgb(0, 99, 44) 100%
  );
  border: none;
  font-size: 20px;
  color: aliceblue;
  padding: 10 50;
  height: 80px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 2px 2px 0px #000000;
  font-weight: normal;
  width: 100%;
  cursor: pointer;
}

button.Redwave {
  background: rgb(94,0,26);
background: linear-gradient(0deg, rgba(94,0,26,1) 0%, rgba(174,25,66,1) 50%, rgba(94,0,26,1) 100%);
  border: none;
  font-size: 20px;
  color: aliceblue;
  padding: 10 40;
  height: 80px;
  font-family: Arial, Helvetica, sans-serif;
  text-shadow: 2px 2px 0px #000000;
  font-weight: normal;
  width: 100%;
  cursor: pointer;
}

