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

body {
  position: relative;
  box-sizing: border-box;
  height: 100vh;
  padding: 0;
  margin: 0;
  padding: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.text {
  max-width: 550px;
  font-size: 32px;
  color: #fff;
  text-align: center;
  font-weight: 700;
  margin-bottom: 18px;
}

.link {
  background-color: #570e0d;
  padding: 16px 24px;
  max-width: 350px;
  width: 100%;
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: 30px;
  font-weight: 700;
  text-transform: uppercase;
  transition: scale 0.4s, box-shadow 0.4s;

  &:hover {
    box-shadow: rgba(0, 0, 0, 0.3) 0 6px 8px;
    scale: 1.05;
  }
}

@media (max-width: 500px) {
  .link {
    max-width: 300px;
  }
}

body::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: url("/img/bg.jpg") no-repeat center / cover;
  filter: blur(14px);
}
.zelsp-footer {
  z-index: 1000;
  font-size: 1.5rem;
  font-weight: 500;
  padding-right: 16px;
  color: rgb(226, 232, 240);
  margin-block: 10px;
}
.zelsp-msg {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-top: auto;
  margin-bottom: auto;
}
.zelsp-footer a {
  color: currentcolor;
  text-decoration: none;
  margin-block: 10px;
  transition: color 0.3s;
}
.zelsp-footer a:hover {
  /* color: #570e0d; */
  text-decoration: underline;
}
