body {
  font-family: "Gill Sans", "Gill Sans MT", Cabin, sans-serif;
  color: #300a30;
  font-size: calc(0.75em + 1vmin);
  background: #f3ffeb;
}

body.transparent {
  background: transparent;
}

/* Rainbow banner at top */

.site-banner {
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-bottom: 1px solid rgb(0 0 0 / 15%);
  box-shadow: 0 2px 4px rgb(0 0 0 / 50%);

  /* animated rainbow gradient */
  background: linear-gradient(
    270deg,
    var(--banana-yellow),
    var(--orange-glow),
    var(--tomato-red),
    var(--bright-violet),
    var(--ocean-blue),
    var(--seafoam),
    var(--grass-green),
    var(--banana-yellow)
  );

  background-size: 600% 600%;
  animation: rainbow-shift 24s linear infinite;
}

/* smooth colour shift */
@keyframes rainbow-shift {

  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.site-banner h2 {
  background: transparent url("./assets/logo.svg") 0 0;
  background-size: 154px;
  height: 90px;
  width: 100%;
  background-repeat: no-repeat;
  margin: 0;
  padding-left: 155px;
  display: block;
  font-size: 1.8rem;
  font-family: "Delius Swash Caps", cursive;
  font-weight: 400;
  font-style: normal;
  line-height: 100px;
}
