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

ul[class],
ol[class] {
  padding: 0;
}

body,
h1,
h2,
h3,
h4,
p,
ul[class],
ol[class],
figure,
blockquote,
dl,
dd {
  margin: 0;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

ul[class],
ol[class] {
  list-style: none;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

img {
  max-width: 100%;
  display: block;
}

article > * + * {
  margin-top: 1em;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* Main styles */

body {
  background: url(bg.svg) center no-repeat;
  background-size: cover;
  color: #989898;
  font-family:
    -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
  font-size: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 500;
}

a {
  color: inherit;
  text-decoration: none;
  display: flex;
}

main {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

h1 {
  text-transform: uppercase;
  font-size: 4rem;
  font-weight: 900;
  color: #400082;
  margin-bottom: 0.5em;
}

h2 {
  font-weight: 500;
  margin-bottom: 2rem;
  margin-top: 0.5rem;
  font-size: 1.1rem;
}

p {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.logo-link span {
  display: block;
  width: 110px;
  height: 15px;
  background: url(lur.svg) center no-repeat;
  background-size: contain;
}

footer {
  margin-top: 2rem;
}

/* Responsive design */

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 1rem;
  }

  body {
    padding: 1rem;
  }

  main {
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 2rem;
  }

  body {
    padding: 0.5rem;
  }
}
