/* Style the footer */
.footer {
  background-color: black;
  padding: 10px;
  text-align: center;
  color: white;
}

.button {
  border: none;
  color: white;
  padding: 16px 32px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 16px;
  margin: 4px 2px;
  transition-duration: 0.4s;
  cursor: pointer;
}

.button1 {
  background-color: #008CBA; 
  color: black; 

}

.button1:hover {
  background-color: #04AA6D;
  color: white;
}

.button2 {
  background-color: #04AA6D; 
  color: black;
  border-radius: 50%;
}

.button2:hover {
  background-color: #008CBA;
  color: white;
}




