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

html {
  height: 100%;
  scroll-behavior: smooth;
}

body {
  height: 100%;
  margin: 0;
}

p {
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  color: #fff;
}

.main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: safe center;
  align-items: center;
  padding: 20px;
  padding-bottom: 85px;
}

.overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: -1;
  backdrop-filter: blur(8px) brightness(calc(1 - 0.45));
}

#gradient-canvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  background: linear-gradient(
    135deg,
    #5b3df5 0%,
    #7a3cff 22%,
    #b24cff 38%,
    #ff3b6a 55%,
    #ff5a3d 70%,
    #ffb020 100%
  );
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 46%);
}

@media screen and (min-width: 768px) {
  #gradient-canvas {
    clip-path: polygon(0 0, 100% 0, 100% 33%, 0 70%);
  }
}

@media screen and (min-width: 442px) {
  main {
    height: 100%;
  }
}

.content {
  height: 100%;
}

.text {
  margin-bottom: 2rem;
  max-width: 800px;
  font-size: 30px;
  font-weight: 600;
  text-align: center;
}

.btn {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 450px;
  width: 100%;
  height: 70px;
  padding: 12px;
  background: rgba(128, 128, 128, 0.3);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
  text-decoration: none;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  border-radius: 10px;
  animation: breath 0.9s ease-in-out infinite;
}

@keyframes breath {
  0% {
    scale: 1;
  }

  50% {
    scale: 1.05;
  }

  100% {
    scale: 1;
  }
}

.cookies-text {
  max-width: 800px;
  margin-top: 2rem;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 24px;
  background: rgba(128, 128, 128, 0.4);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.45);
}

.privacy-terms {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 20px;
  color: #fff;
  font-size: 20px;
}

.privacy-terms a {
  text-decoration: none;
  color: #fff;
  font-size: 20px;
}

.privacy-terms a:hover {
  text-decoration: underline;
}
