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

body {
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

body::before {
  content: "";
  position: fixed;
  inset: -20px;
  background: url("/img/bg.png") no-repeat center / cover;
  z-index: -1;
  filter: blur(10px) brightness(0.6);
}
.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  margin: 0 auto;
  max-width: 800px;
}
.title {
  color: #FF3300;
  text-align: center;
}

.link {
  background-color: #ffffff;
  text-align: center;
  color: #FF3300;
  font-weight: 700;
  font-size: 30px;
  max-width: 600px;
  width: 100%;
  padding: 16px 20px;
  border-radius: 16px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.link:hover {
  background-color: #b41b1b;
  transform: translateY(-3px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.link:active {
  background-color: #b41b1b;
  transform: translateY(0);
  box-shadow: none;
}
.bottom-links {
  width: 100%;
  position: fixed;
  bottom: 10px;
  color: #fff;
}
.bottom-text {
  text-align: center;
}
.bottom-link {
  color: #fcb8b8;
}
.bottom-link:hover {
  text-decoration: none;
}
