html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  background: #ffffff;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  min-height: 100svh;
  color: #11181c;
  font-family: Arial, Helvetica, sans-serif;
}

.page {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  background: #ffffff;
}

.email {
  position: absolute;
  left: 50%;
  top: 51%;
  transform: translate(-50%, -50%);
  color: #11181c;
  font-size: clamp(1.2rem, 1.75vw, 1.8rem);
  font-weight: 700;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.email:hover,
.email:focus-visible {
  text-decoration: underline;
}

.email:focus-visible {
  outline: 3px solid #11181c;
  outline-offset: 6px;
}

.logo {
  position: absolute;
  left: 50%;
  bottom: 5.5%;
  width: clamp(92px, 8vw, 135px);
  height: auto;
  transform: translateX(-50%);
  user-select: none;
  -webkit-user-drag: none;
}

@media (max-width: 700px) {
  .email {
    top: 48%;
    font-size: clamp(1.05rem, 5.8vw, 1.45rem);
  }

  .logo {
    bottom: 7%;
    width: clamp(88px, 24vw, 118px);
  }
}
