#header {
  padding: 20px;
  margin: 20px;
  color: rgb(78, 78, 78);
  border-bottom: 2px solid rgba(105, 105, 105, 0.719);
}
label, button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  font-size: 20px;
  font-weight: bold;
  border-radius: 10px;
  background-color: white;
}
label {
  color: #448aff;
  border: 2px solid #448aff;
}
button {
  color: #469c10  ;
  border: 2px solid #469c10;
}
label:hover {
  color: white;  
  background-color: #448aff;
}
button:hover {
  
  color: white;  
  background-color: #469c10;
}