/*Adds the fix now button*/
.button {
  border: none;
  color: white;
  padding: 15px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  cursor: pointer;
}
.button1 {background-color: darkred;}
/*Makes the backround color change*/
body {
  animation: 2s infinite ease-in-out color-change;
}
  
@keyframes color-change {
  0% {
    background-color: white;
  }
  50% {
    background-color: red;
  }
  100% {
    background-color: white;
  }