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

main {
  height: 100vh;
  position: relative;
}


main::before {
  content: "";
  background: url("/img/bg.webp") no-repeat center / cover;
  filter: blur(4px);
  position: absolute;
  inset: 0;
  z-index: -1;
}

main::after {
  content: "";
  background: rgba(255, 255, 255, 0.53);
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cookies-wrapper {
  z-index: 1;
  background-color: #fff;
  width: 100%;
  position: absolute;
  bottom: 40px;
  left: 0;
  right: 0;
}

.cookies-inner {
  padding: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.cookies-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
}

.cookies-text {
  font-size: 16px;
  margin-bottom: 4px;
}

.cookies-text:last-of-type {
  margin-bottom: 20px;
}

.cookies-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.cookies-link {
  display: block;
  background-color: #808080;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  padding: 10px;
  max-width: 140px;
  width: 100%;
  text-align: center;
  transition: background-color 0.4s ease;
}

.cookies-link:hover {
  background-color: #000;
}

.links {
  z-index: 2;
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  bottom: 4px;
  left: 50%;
  transform: translate(-50%, -4px);
}

.links a {
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 20px;
}

@media (max-width: 600px) {
  .cookies-btns {
    flex-direction: column;
  }

  .cookies-link {
    max-width: 100%;
  }
}
