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

html, body {
  height: 100%;
  overflow: hidden;
  background: #051f20;
}

body {
  height: 100dvh;
  position: relative;
}

.bg {
  position: absolute;
  inset: 0;
  background-image: url("img/bg-linneum.jpg");
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: fade-in 4s ease-in forwards;
}

@keyframes fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.header {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lottie {
  width: min(98vw, 1040px);
  aspect-ratio: 3840 / 2160;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .bg {
    background-image: url("img/bg-linneum_phone.jpg");
  }

  .lottie {
    width: min(118vw, 960px);
    transform: translateY(-30%);
  }
}
