body,
header,
main,
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

body {
  font-family: "Inter", sans-serif;
  color: white;
  background: black;
  margin: 0;

  min-height: 100vh;
  justify-content: center;
  gap: 30px;

  padding: 30px 20px;
  box-sizing: border-box;

  position: relative;
  overflow-x: hidden;
}

/* Background image */
body::before {
  content: "";
  position: fixed;
  inset: -20px;

  background-image:
    linear-gradient(rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.55)),
    url("../img/bg.png");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  filter: blur(8px);

  z-index: -1;
}

figure {
  overflow: hidden;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: 0 0 10px 0;
}

figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

h1 {
  margin: 0;
  font-family: "Solid Grooves", sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  text-align: center;
}

h2 {
  font-size: 18px;
  font-weight: 300;
  margin: 0 0 5px 0;
  letter-spacing: 0.2em;
  text-align: center;
}

h3 {
  font-size: 24px;
  font-family: "Crashbow", sans-serif;
  letter-spacing: 0.15em;
  text-align: center;
}

main {
  gap: 30px;
  width: 100%;
}

main a {
  width: 100%;
  max-width: 300px;

  text-decoration: none;
  color: inherit;
}

main button {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;

  width: 100%;
  min-height: 50px;
  padding: 12px 20px;

  background-color: transparent;
  color: white;

  border: 2px solid white;
  border-radius: 30px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  cursor: pointer;
}

main button img {
  width: 1em;
  height: 1em;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

footer {
  gap: 1px;
}

/* #region Social Bar */

.socialssection {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;
  overflow: hidden;
}

.socialbar__links {
  display: flex;
  align-items: center;
  justify-content: center;

  gap: 20px;

  list-style: none;
  margin: 0;
  padding: 0;
}

.socialbar__link:hover {
  opacity: 0.5;
}

/* #endregion */

/* Mobile */
@media (max-width: 480px) {
  body {
    justify-content: flex-start;
    padding: 30px 16px;
    gap: 24px;
  }

  figure {
    width: 150px;
    height: 150px;
  }

  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 15px;
  }

  h3 {
    font-size: 20px;
  }

  main {
    gap: 20px;
  }

  main a {
    max-width: 100%;
  }

  main button {
    font-size: 14px;
    min-height: 50px;
  }

  .socialssection,
  .socialbar__links {
    gap: 16px;
  }
}
