:root {
  --gap-logo-to-text: 85px;
  --gap-text-to-player: 64px;
}

@font-face {
  font-family: "ABC-Diatype";
  src: url("./fonts/ABCDiatype-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "ABC-Diatype", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #fff;
  color: #000;
}

.page {
  min-height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.logo {
  display: block;
  width: 93px;
  height: 34px;
  object-fit: contain;
  margin: 0 0 var(--gap-logo-to-text);
  user-select: none;
}

.title {
  margin: 0 0 var(--gap-text-to-player);
  font-size: 64px;
  font-weight: 400;
  line-height: 1.1;
}

@media (max-width: 700px) {
  .title {
    font-size: 24px;
  }
  .player {
    width: min(220px, 90vw);
  }
}
