* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background-color: #222222;
  background-image: url("bg-darklava.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #FFFFFF;
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 17px;
  font-weight: 300;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: #D29159;
  text-decoration: none;
  transition: color 0.18s ease, opacity 0.18s ease;
}

a:visited {
  color: #D29159;
}

a:hover,
a:focus-visible {
  color: #47B7CC;
}

.page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px 24px;
}

.panel {
  width: 100%;
  max-width: 760px;
  text-align: center;
}

.logo-wrap {
  margin: 0 auto 22px;
  max-width: 200px;
}

.logo {
  display: block;
  width: 100%;
  height: auto;
}

h1 {
  margin: 0 0 18px;
  font-size: clamp(2rem, 4vw, 2.5rem);
  font-weight: 500;
  letter-spacing: 0.01em;
  color: #FFFFFF;
}

p {
  margin: 0;
}

.intro {
  margin: 0 auto 28px;
  max-width: 34rem;
}

.social {
  margin: 0 0 28px;
}

.social ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin: 0;
  padding: 0;
}

.social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 36px;
  color: #AAAAAA;
}

.social a:visited {
  color: #888888;
}

.social a:hover,
.social a:focus-visible {
  color: #FFFFFF;
}

.icon {
  display: block;
  width: 42px;
  height: 33px;
  fill: currentColor;
}

.link-block p + p {
  margin-top: 4px;
}

.sep {
  color: #AAAAAA;
  padding: 0 0.2em;
}

.dimmed {
  color: #AAAAAA;
  font-size: 14px;
  font-weight: 100;
}

@media (max-width: 560px) {
  .page {
    padding: 36px 18px;
  }

  .logo-wrap {
    max-width: 170px;
    margin-bottom: 18px;
  }

  body {
    font-size: 16px;
  }

  .social ul {
    gap: 16px;
  }
}