* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100vh;
}

body {
  margin: 0;
  background: #000;
  color: #fff;
  font-family: "Montserrat", sans-serif;
}

.hero {
  position: relative;
  width: 100%;
  min-height: 100vh;
}

.logo {
  position: absolute;
  left: 50%;
  bottom: calc(50% + 2rem);
  width: min(100%, 28rem);
  height: auto;
  display: block;
  transform: translateX(-50%);
  margin-bottom: -100px;
  margin-left: -5px;
}

.status {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  font-size: clamp(3rem, 10vw, 6rem);
  font-weight: 800;
  letter-spacing: 0.2em;
  line-height: 1;
  text-transform: uppercase;
  text-align: center;
  transform: translate(-50%, -50%);
  animation: pulse 1.8s ease-in-out infinite;
}

@media (max-width: 640px) {
  .logo {
    width: min(100%, 15rem);
    bottom: calc(50% + 1.5rem);
  }

  .status {
    top: 54%;
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 0.45;
    transform: translate(-50%, -50%) scale(0.98);
  }

  50% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}
