:root {
    --UI-UX-1: #17A2B8;
    --UI-UX-2: #E2F26B;
    --UI-UX-3: #B4BF5E;
    --UI-UX-4: #F2F2F2;
    --UI-UX-5: #0D0D0D;
}


/* Preloader */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spinner {
  border: 6px solid #f3f3f3;
  border-top: 6px solid var(--UI-UX-1);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}


body {
  font-family: 'Space Grotesk', sans-serif;
  margin: 0 auto;
  padding: 2rem;
  max-width: 900px;
  line-height: 1.6;
  background-color: #fafafa;
  color: #333;
}

h1,
h2,
h3 {
  color: #17A2B8;
  font-weight: 600;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

h2 {
  font-size: 1.8rem;
  margin-top: 2rem;
  border-bottom: 2px solid #17A2B8;
  padding-bottom: 0.3rem;
}

h3 {
  font-size: 1.4rem;
  margin-top: 1.5rem;
}

p,
li,
blockquote {
  font-size: 1.1rem;
}

img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-top: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

blockquote {
  background-color: #eef6f8;
  border-left: 5px solid #17A2B8;
  padding: 1rem;
  margin: 1rem 0;
  font-style: italic;
  color: #555;
}

ul,
ol {
  padding-left: 1.5rem;
}

a {
  color: #17A2B8;
  text-decoration: none;
  font-weight: 500;
}

a:hover {
  text-decoration: underline;
}

button {
  background-color: #17A2B8;
  color: white;
  border: none;
  padding: 0.7rem 1.5rem;
  border-radius: 6px;
  font-size: 1rem;
  margin-top: 2rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

button:hover {
  background-color: #138a9c;
}