
#openSilver {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 95%;
  background-color: rgb(36, 70, 163);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 2rem;
  margin:12px 33px;
  border-radius: 15px;
  color: rgb(173, 173, 173);
  transition: all ease 1s;
  box-shadow: 10px 15px 28px black;
}
#openSilver:hover{
  background-color: rgb(173, 173, 173);
  border-style: groove;
  border-color: rgb(0, 0, 0);
  color: rgb(0, 0, 0);
  font-size: 2.1rem;
  box-shadow: 10px 20px 38px rgb(173, 173, 173);
}

#openPlatinum {
  padding: 10px 20px;
  font-size: 16px;
  cursor: pointer;
  width: 95%;
  background-color: rgb(18, 20, 26);
  font-family:'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
  font-size: 2rem;
  margin:12px 33px;
  border-radius: 15px;
  color: #e5e4e2;
  transition: all ease 1s;
  box-shadow: 10px 15px 28px black;
}
#openPlatinum:hover{
  background-color: #e5e4e2;
  border-style: groove;
  border-color: #000000;
  color: rgb(0, 0, 0);
  font-size: 2.1rem;
  box-shadow: 10px 20px 38px #e5e4e2;
}

