:root {
  color-scheme: dark;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

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

body {
  display: grid;
  min-height: 100vh;
  min-height: 100svh;
  place-items: center;
  padding: 24px;
  color: #efffff;
  text-align: center;
  background:
    linear-gradient(rgba(0, 0, 0, .72), rgba(0, 0, 0, .72)),
    #071819 url("../images/1.jpg") center / cover no-repeat;
}

main {
  width: min(540px, 100%);
  padding: 36px 28px;
  border: 1px solid rgba(190, 255, 251, .2);
  border-radius: 12px;
  background: rgba(7, 24, 25, .78);
  box-shadow: 0 18px 50px rgba(0, 0, 0, .34);
  backdrop-filter: blur(8px);
}

p {
  margin: 0 0 22px;
  font-size: 17px;
  line-height: 1.55;
  color: rgba(239, 255, 255, .8);
}

a {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  color: #102223;
  text-decoration: none;
  font-weight: 700;
  border-radius: 8px;
  background: linear-gradient(135deg, #ffe269, #ffc143);
  transition: transform .2s ease, box-shadow .2s ease;
}

a:hover,
a:focus-visible {
  outline: none;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .3), 0 0 0 3px rgba(113, 231, 223, .38);
}

@media (prefers-reduced-motion: reduce) {
  * {
    transition-duration: .01ms !important;
  }
}
