@charset "utf-8";


body {
  font-family: "neue-haas-unica", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: white;
  background-color: #28643e;
  width: 100vw;
  width: 100dvw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  box-sizing: border-box;
}

main {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

#zelkova {
  width: 60%;
  height: 100px;
  background-image: url(../img/logo.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

footer {
  position: absolute;
  bottom: 1%;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  font-weight: 300;
}

@media screen and (max-width: 1024px) {
  #zelkova {
    width: 80%;
  }
}

@media screen and (max-width: 767px) {}