.logo {
	height: 80px;
}

hr {
  border: none;
  border-top: 1px solid black;
}

button {
  background-color: white;
  color: black;
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px 20px;
  transition: all 0.3s ease;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25); 
}

button:hover {
  background-color: #0077be;
  color: white;
  border: 1px solid #0077be;
}

.button-container {
  text-align: left;
}

.button-container button {
  display: inline-block;
  margin-right: 10px;
}