* {
  margin: 0;
  padding: 0;
}

html, body {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "Gidole", sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  overflow: hidden;
}

h1 {
  padding: 1rem 0;
}

.background-wrapper {
  position: fixed;
  z-index: 0;
  width: 100vw;
  height: 100vh;
  background: #ffcc00;
  overflow: hidden;
}

.background-wrapper img {
  display: block;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: multiply;
}

.logo-placeholder {
  position: relative;
  z-index: 1;
  width: 80vw;
  max-width: 700px;
  max-height: 700px;
  margin: 2rem 0;
  border-radius: 50%;
  overflow: hidden;
  mix-blend-mode: hard-light;
}
@media screen and (min-width: 550px) {
  .logo-placeholder {
    width: 50vw;
    margin: 4rem 0;
  }
}

.logo-placeholder img {
  width: 100%;
  height: 100%;
}

footer {
  position: fixed;
  bottom: 0;
  width: 100vw;
  padding: 1.5rem 1rem;
  background: black;
  border-top: 0.25rem solid #ffcc00;
  color: white;
  font-size: 1rem;
  text-align: center;
}
footer a {
  color: #ffcc00;
}