@font-face {
    font-family: 'KernelText';
    src: url('vesterbro.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
  }

  @font-face {
    font-family: 'Pitch';
    src: url('PitchWeb-Medium.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
  }

  @font-face {
    font-family: 'Pitch';
    src: url('PitchWeb-MediumItalic.woff2') format('woff2');
    font-weight: 700;
    font-style: italic;
  }

* {
    margin: 0;
    padding: 0;
    line-height: inherit;
    box-sizing: border-box;
}
html {
  width: 100%;
  height: 100%;
}
body {
    background: #7899bb;
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
  }

.container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 100%;
}

.logo {
  color: #eed9ab;
  font-family: "KernelText";
  font-weight: 800;
  font-size: clamp(3rem, 2.5vw, 3.5rem);
  text-shadow: 3px 3px rgba(0, 0, 0, .1);
  line-height: 1.5;
}

.tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.25rem);
  text-align: center;
  color: #eed9ab;
  font-family: "Pitch";
  text-shadow: 1px 1px rgba(0, 0, 0, .1);
}

.tagline span {
  font-style: italic;
}

.watermark {
    display: inline-block;
    position: absolute;
    bottom: 0;
    right: 0.5rem;
    padding: 0.25rem;
    font-family: "Pitch";
    font-style: italic;
    color: #eed9ab;
    text-shadow: 1px 1px rgba(0, 0, 0, .1);
}

.wiggle {
  display: block;
  position: absolute;
  width: 5rem;
  height: 5rem;
  left: 1rem;
  bottom: -2rem;
}

.eyes {
  display: flex;
  opacity: 1;
  transition: opacity 0.25s;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  align-items: center;
  justify-content: center;
}

.eye::after {
  position: absolute;
  bottom: 13px;
  right: 10px;
  width: 15px;
  height: 15px;
  background: #000;
  border-radius: 50%;
  content: " ";
}

.eyes .eye {
  position: relative;
  width: 2rem;
  height: 2rem;
  margin: 0 0.125rem;
  background-image: url(https://www.synergyart.co.uk/wp-content/themes/synergy/images/eye.svg);
  background-size: contain;
}