/* Global styles */
body {
  margin: 0;
  padding: 0 40px; /* add left/right padding */
  font-family: "Segoe UI", Arial, sans-serif;
  background: linear-gradient(135deg, #1a001f, #2e004f);
  color: #e5d9ff;
  min-height: 100vh;
}

/* Title section with blur effect */
h1 {
  background: rgba(80, 0, 130, 0.5);
  backdrop-filter: blur(10px);
  padding: 20px;
  margin: 0 -40px 20px; /* stretch full width */
  font-size: 2.5rem;
  color: #f0e6ff;
  border-bottom: 2px solid #b366ff;
  letter-spacing: 2px;
  text-shadow: 0 0 10px rgba(180, 130, 255, 0.8);
  text-align: center; /* keep the title centered */
}

/* Paragraphs */
p {
  font-size: 1.1rem;
  margin: 15px 0 5px;
  color: #d7b3ff;
  text-align: left; /* align text left */
}

/* Buttons */
button {
  display: inline-block;
  background: transparent;
  border: 2px solid #b366ff;
  color: #e5d9ff;
  padding: 10px 18px;
  margin: 6px 10px 6px 0; /* space buttons apart horizontally */
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px; /* only slightly rounded */
  transition: all 0.25s ease;
  text-align: left;
}

a {
  display: inline-block;
  background: transparent;
  border: 2px solid #b366ff;
  color: #e5d9ff;
  padding: 10px 18px;
  margin: 6px 10px 6px 0; /* space buttons apart horizontally */
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 4px; /* only slightly rounded */
  transition: all 0.25s ease;
  text-align: left;
}

/* Hover / focus effects */
button:hover {
  background: rgba(179, 102, 255, 0.15);
  box-shadow: 0 0 10px #b366ff;
  transform: scale(1.05);
}

button:active {
  transform: scale(0.95);
  background: rgba(179, 102, 255, 0.25);
}

#asterisc {
  font-size: 50%; /* 4x smaller */
}

