.reggae-one-regular-24 {
  font-family: "Reggae One", serif;
  font-weight: 400;
  font-size: 24px;
  font-style: normal;
}

.reggae-one-regular-26 {
    font-family: "Reggae One", serif;
    font-weight: 400;
    font-size: 26px;
    font-style: normal;
}
  
.howto-step {
  cursor: default;
}

.large-logo {
  display: flex; 
  align-items: center !important;
  justify-content: center;
}

.cookiealert {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0 !important;
  padding: 0.75rem 1.25rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  transform: translateY(100%);
  transition: all 500ms ease-out;
  color: #161528;
  background: #9191d2;
  font-size: 16px;
}

.cookiealert.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0%);
  transition-delay: 1000ms;
}

.cookiealert a {
  text-decoration: underline;
}

.cookiealert .acceptcookies {
  margin-left: 10px;
  vertical-align: baseline;
}