/* RESET AND BASICS */
html, body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  height: 100%;
  background-color: #f5f5f5;
  color: #333;
  box-sizing: border-box;
}

  
/* BUTTONS */
.buttons {
  display: flex;
  justify-content: center;
  gap: 1em;
  flex-wrap: wrap;
}

.buttons a {
  text-decoration: none;
  color: white;
  background-color: #25aadd;
  padding: 0.75em 1.5em;
  border-radius: 6px;
  font-weight: bold;
  transition: background-color 0.3s;
  width: 220px;
  text-align: center;
  display: inline-block;
}

.buttons a:hover {
  background-color: #25aadd;
}

