:root {
  --oma-yellow: #e8ff01;
  --oma-gray: #a5a5a5;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--oma-yellow);
  color: var(--oma-gray);
  font-family: Arial, Helvetica, sans-serif;
}

.landing {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
}

.logo {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(76vw, 520px);
  height: auto;
  transform: translate(-50%, -50%);
  display: block;
}

.contact {
  position: absolute;
  top: calc(50% + min(38vw, 260px) + 22px);
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 12px;
  border: 1px solid rgba(165, 165, 165, 0.75);
  border-radius: 999px;
  color: var(--oma-gray);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
}

.contact:focus-visible {
  outline: 2px solid var(--oma-gray);
  outline-offset: 4px;
}

@media (max-height: 520px) {
  .logo {
    width: min(58vh, 420px);
  }

  .contact {
    top: calc(50% + min(29vh, 210px) + 14px);
  }
}
