.back-button {
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
}
body,
html {
  height: 100%;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(135deg, #1e0033, #3a0066);
  color: #fff;
  overflow-x: hidden;
}

.background-dots {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
}

.dot {
  position: absolute;
  width: 6px;
  height: 6px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  animation: float 10s infinite linear;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@keyframes float {
  0% {
    transform: translateY(100vh) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateY(-10vh) scale(0.5);
    opacity: 0;
  }
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(0, 0, 0, 0.1);
  padding: 1rem 2rem;
  animation: slideDown 0.8s ease-out;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

@keyframes slideUP {
  from {
    transform: translateY(100%);
    filter: blur(6px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    filter: blur(0);
    opacity: 1;
  }
}

.navbar img {
  height: 40px;
}

.navbar a {
  font-family: "Montserrat", sans-serif;
  color: #ccc;
  text-decoration: none;
  margin-left: 20px;
  font-size: 1rem;
  transition: color 0.3s;
}

.navbar a:hover {
  color: white;
}

.content {
  font-family: "Montserrat", sans-serif;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 100px 20px 40px;
  max-width: 800px;
  margin: auto;
  animation: slideUP 2s;
}

.content h1 {
  font-size: 50px;
  margin-bottom: 20px;
  font-weight: 900;
}

.content ul {
  list-style-type: square;
  padding-left: 20px;
}

.content li {
  list-style: none;
  margin-bottom: 10px;
  line-height: 1.6;
}

