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

* {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

.icon {
  height: 24px !important;
  width: 24px !important;
  color: #b8b6b900 !important;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  text-rendering: optimizeSpeed;
}

@font-face {
  font-family: "GT Walsheim";
  src: url("/fonts/GTWalsheimPro-Bold.woff2") format("woff2");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/Inter-Regular.woff2") format("woff2");
  font-display: swap;
}

.h1 {
  font-family: "GT Walsheim";
  font-size: 28px;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
  color: #fff;
  letter-spacing: -0.4px;
}

.main-container {
  width: 100%;
  height: 100%;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "Inter", sans-serif;
  font-weight: 400;
  position: relative;
  padding: 20px;
  max-width: 992px;
}

.illustration-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 170px;

  &>img {
    width: 100%;
  }
}

.content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;

  &>p {
    font-family: "Inter", sans-serif;
    font-weight: 400;
    font-size: 16px;
  }

  &>button {
    margin-top: 32px;
  }
}

.social-links-container {
  position: absolute;
  bottom: 20px;
}

.social-links-list {
  display: flex;
  gap: 20px;
}

@media (min-width: 768px) {
  .social-links-list {
    gap: 32px;
  }
}

.not-found-bg {
  background: url("/images/png/404-page-bg.png");
}

.server-error-bg {
  background: url("/images/png/500-page-bg.png");
}

.bg {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #030b0a;
}

.maintenance-bg {
  background: url("/images/png/maintenance-bg.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-color: #030b0a;
  background-position: top 30% left 50%;
}

.accent-color {
  color: #34a853;
}

button {
  cursor: pointer;
  background-color: transparent;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  font-style: normal;
  border: solid 2px transparent;
  border-radius: 8px;
  padding: 0;
  display: flex;
  gap: 4px;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease, color 0.3s ease;

  font-size: 16px;
  padding: 10px 20px;
  background-color: #34a853;
}

button:hover {
  border: 2px solid #81c784;
}

button:active {
  background-color: #24753a;
  border: 2px solid transparent;
}

button:disabled {
  background-color: #00764d;
  cursor: not-allowed;
}

button:disabled:hover {
  border: 2px solid transparent;
}

@media (min-width: 992px) {
  .maintenance-bg {
    background-position: unset;
  }

  .maintenance-bg>.content {
    margin-top: calc(100vw * 0.1);
  }

  .h1 {
    font-size: 72px;
    line-height: 66px;
  }
}