* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, html {
  width: 100%;
  height: 100vh;
}

body {
  background-color: #fff;
  justify-content: center;
  align-items: center;
  display: flex;
}

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

.logo {
  opacity: 0;
  width: auto;
  max-width: 80%;
  height: auto;
  max-height: 80vh;
  animation: 1.5s ease-out forwards fadeIn;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(.95);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}
/*# sourceMappingURL=look-and-feel.971c2ea4.css.map */
