:root {
  --bg: #ab0f1b;
  --button-bg: #ffffff;
  --button-text: #ab0f1b;
  --text: #ffffff;
}

* {
  box-sizing: border-box;
}

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

body {
  font-family: Karla, Arial, Helvetica, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  background: var(--bg);
  color: var(--text);
}

a {
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  padding: 10px 14px;
  background: #ffffff;
  color: #111111;
  z-index: 999;
}

.page {
  min-height: 100vh;
  padding: 14px 16px 36px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.content {
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 18px;
}

.logo {
  display: block;
  width: 100%;
  max-width: 180px;
  height: auto;
}

.links {
  width: 100%;
  max-width: 520px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 54px;
  padding: 11px 18px;
  border-radius: 4px;
  background: var(--button-bg);
  color: var(--button-text);
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.15;
}

.button .icon {
  width: 16px;
  min-width: 16px;
  font-size: 16px;
  line-height: 1;
  text-align: center;
}

.button span {
  display: inline-block;
}

.button.multi {
  min-height: 55px;
  padding-top: 9px;
  padding-bottom: 9px;
}

@media (max-width: 480px) {
  .links {
    width: 80vw;
    max-width: 80vw;
  }

  .page {
    padding: 12px 12px 30px;
  }

  .logo-wrap {
    margin-bottom: 16px;
  }

  .logo {
    max-width: 170px;
  }

  .links {
    gap: 16px;
  }

  .button {
    min-height: 52px;
    padding: 11px 14px;
    font-size: 15px;
  }

  .button .icon {
    width: 15px;
    min-width: 15px;
    font-size: 15px;
  }
}
