body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: #f26522;
  font-family: 'Helvetica Neue', sans-serif;
  color: white;
  margin: 0;
}

.logo {
  max-width: 400px;
  margin:auto auto auto auto; /* minder ruimte onder logo */
  display: block;
}

main {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 5px; /* iets ruimte onder logo */
}

h2 {
  margin-bottom: 20px;
  font-size: 2.2em;
  font-weight: bold;
  color: white;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 20px auto;
  padding: 15px;
  width: 80%;
  max-width: 300px;
  background: white;
  color: #f26522;
  text-decoration: none;
  border-radius: 10px;
  font-size: 1.4em;
  font-weight: bold;
  transition: all 0.3s ease;
}


.button:hover {
  background: #ffe5d0;
  color: #d64a1f;
}

.button.drinks {
  background: white;
  color: #f26522;
}

.icon {
  height: 50px;
  width: auto;
  margin-right: 10px;
}


.footer {
  background-color: #f26522;
  color: white;
  padding: 10px 10px 10px 10px;
  text-align: center;
  font-size: 0.9em;
}

.footer .caresta-logo {
  width: 70px;
  margin: 5px auto;
  display: block;
  opacity: 0.9;
}
