:root {
  --body-bg-color: #0d0d0d;
  --body-text-color: #ffffff;
  --heading-color: #ffffff;
  --hero-gradient1: #168295;
  --hero-gradient2: #0b5e3a;
  --footer-bg-color: #0d0d0d;
  --link-color: #e04394;
  --header-bg-color: #ffffff;
  --font-family: "Times New Roman", Times, serif;
  --nav-link-color: #ffffff;
  --footer-text-color: #ffffff;
  --header-text-color: #ffffffff;
}
html {
  overflow-x: hidden;
}
body {
  background-color: var(--body-bg-color);
  color: var(--body-text-color) !important;
  font-family: var(--font-family);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
/* ===== FALLING STARS BACKGROUND ===== */

body {
  background: #06070f; /* deep cosmic black */
  overflow-x: hidden;
}

/* A wrapper to hold the star elements */
body::before,
body::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 120%;
  height: 120%;
  pointer-events: none;
  background-repeat: repeat;
  background-size: contain;
  opacity: 0.55;
  animation: fallingStars 12s linear infinite;
}

/* Layer 1: more stars */
body::before {
  background-image: radial-gradient(
      2px 8px at 40% 20%,
      rgba(255, 255, 255, 0.9),
      transparent
    ),
    radial-gradient(2px 8px at 80% 70%, rgba(255, 255, 255, 0.8), transparent),
    radial-gradient(2px 8px at 20% 50%, rgba(255, 255, 255, 0.7), transparent);
  animation-duration: 10s;
}

/* Layer 2: fewer but brighter falling stars */
body::after {
  background-image: radial-gradient(
      3px 12px at 30% 10%,
      rgba(180, 200, 255, 0.9),
      transparent
    ),
    radial-gradient(3px 12px at 70% 60%, rgba(200, 220, 255, 0.8), transparent);
  animation-duration: 14s;
  opacity: 0.35;
}

/* Falling motion */
@keyframes fallingStars {
  0% {
    transform: translateY(-10%) translateX(0);
  }
  100% {
    transform: translateY(100%) translateX(-10%);
  }
}

h1 {
  font-size: clamp(2rem, 4vw, 2.5rem) !important;
}
h2 {
  font-size: clamp(1.6rem, 3vw, 2rem) !important;
  font-family: "Orbitron", sans-serif !important;
}
h3 {
  font-size: clamp(1.4rem, 3vw, 1.7rem) !important;
}
p {
  margin-bottom: 0.5rem !important;
}

section {
  padding: 15px 0;
  scroll-margin-top: 70px;
}

h2,
h3 {
  color: var(--heading-color) !important;
}

.content-area a {
  color: var(--link-color) !important;
  text-decoration: none !important;
}

.content-area a:hover {
  color: var(--link-color) !important;
  opacity: 0.8;
}

.sidebar-page-list {
  padding: 0;
  margin: 0;
  margin-bottom: 17px;
  width: 279px;
}

.sidebar-page-list li {
  list-style-type: disc;
  list-style-position: inside;
  color: var(--heading-color);
}

.sidebar-page-list li::marker {
  color: var(--link-color);
  font-size: 1.2em;
}
.sidebar-page-list li:last-child {
  border-bottom: none;
}

.sidebar-page-list li a {
  padding: 12px 0;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
  color: var(--link-color);
}

.sidebar-page-list li a:hover {
  padding-left: 11px;
}

.error_page {
  min-height: 70vh;
}

.footer {
  background-color: var(--footer-bg-color);
  color: var(--footer-text-color);
}

.footer a {
  text-decoration: none;
  color: var(--link-color) !important;
}

.navbar {
  background-color: transparent !important;
  transition: background-color 0.4s ease, box-shadow 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1030;
}
.navbar.scrolled {
  background-color: var(--header-bg-color) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.hero-section {
  padding: 115px 0 30px;
  position: relative;
  overflow: hidden;
  color: var(--header-text-color);
}

.hero-section.with-bg {
  background-image: url("/images/hero-bg.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-section.with-bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgb(0, 0, 0));
  opacity: 0.6;
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero-section {
    padding: 77px 0;
  }
}
.navbar-light .navbar-nav .nav-link {
  color: var(--nav-link-color, #141414) !important;
}

.navbar-light .navbar-nav .nav-link.active {
  color: var(--link-color) !important;
  font-weight: bold;
}
/* Mobile nav */
@media (max-width: 1199.98px) {
  .navbar-collapse {
    position: fixed;
    top: 69px;
    left: 15px;
    right: 15px;
    background-color: color-mix(
      in srgb,
      #0000006b 65%,
      transparent
    );
    backdrop-filter: blur(12px);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 15px;
    margin: 0;
  }

  .navbar-nav {
    width: 100%;
  }

  .navbar-nav .nav-item {
    margin: 7px 0;
  }

  .navbar-nav .nav-item:hover {
    transform: translateY(-1px);
  }

  .navbar-nav .nav-link {
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    display: block;
    padding: 0;
  }

  .navbar-toggler {
    z-index: 10000;
    position: relative;
    border: var(--bs-border-width) solid var(--nav-link-color, #141414) !important;
  }
}

.custom-dropdown {
  border: 0;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
  border-radius: 12px;
  padding: 0.5rem 0;
  margin-top: 0.5rem;
  min-width: 220px;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 65%,
    transparent
  ) !important;
  backdrop-filter: blur(12px);
}

.custom-dropdown .dropdown-item {
  padding: 0.75rem 1.5rem;
  transition: all 0.3s ease;
  color: var(--nav-link-color, #141414) !important;
  font-weight: 500;
  border-radius: 0;
  text-wrap: wrap;
}
.dropdown-menu {
  display: none;
}

.custom-dropdown .dropdown-item:hover {
  color: #fff;
  background: color-mix(
    in srgb,
    var(--header-bg-color) 95%,
    transparent
  ) !important;
}
.nav-item.dropdown > .nav-link {
  display: flex;
  align-items: center;
}

.nav-item.dropdown > .nav-link .arrow {
  position: relative;
  margin-left: auto;
  border: solid var(--nav-link-color, #141414);
  border-width: 0 2px 2px 0;
  padding: 3px;
  transform: rotate(45deg);
  transition: transform 0.25s;
}

.dropdown.open .dropdown-menu {
  display: block;
}

@media (min-width: 1200px) {
  .nav-item.dropdown {
    position: relative;
  }
  .nav-item.dropdown > .nav-link .arrow {
    margin-left: 7px;
  }
  .custom-dropdown.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 0;
    z-index: 1000;
  }

  .nav-item.dropdown:hover > .nav-link .arrow {
    transform: rotate(-135deg);
  }
  .nav-item.dropdown:hover > .dropdown-menu {
    display: block !important;
  }
}
@media (max-width: 1199px) {
  .nav-item.dropdown > .nav-link .arrow {
    padding: 4px;
  }
}
/* ===== Galaxy Section Styling ===== */
.heading {
  background: #0b0e18; /* deep space */
  color: #e1e6f9;
  padding: 1rem 19px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

/* Subtle star-like noise overlay */
.heading::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.15;
  pointer-events: none;
}

/* Headings */
.heading h2,
.heading h3 {
  font-family: "Orbitron", sans-serif;
  color: #9bb3ff;
  text-shadow: 0 0 8px rgba(150, 170, 255, 0.6);
  margin-top: 1.2rem;
}

.heading h2 {
  font-size: 2.4rem;
  letter-spacing: 2px;
}

.heading h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

/* Paragraphs */
.heading p {
  font-family: "Inter", sans-serif;
  line-height: 1.7;
  color: #ccd4f0;
}

/* List styling */
.heading ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
}

.heading ul li {
  padding: 0.4rem 0;
  color: #d4dbff;
  position: relative;
}

.heading ul li::before {
  content: "✦";
  color: #8fa2ff;
  margin-right: 0.5rem;
}

/* Image styling */
.heading img {
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(80, 110, 255, 0.4);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.cust-img-shadow {
  box-shadow: 0 0 20px rgba(80, 110, 255, 0.4);
}

.heading img:hover {
  transform: scale(1.04);
  box-shadow: 0 0 30px rgba(110, 140, 255, 0.7);
}

/* Smooth fade-in animation */
.heading {
  animation: fadeIn 1.2s ease forwards;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.heading {
  border: 1px solid rgba(120, 150, 255, 0.3);
  box-shadow: 0 0 30px rgba(90, 130, 255, 0.2);
}
/* ===== Tips & Guides Title Block ===== */
.title {
  position: relative;
  color: #e5e9ff;
  font-family: "Inter", sans-serif;
  margin: 25px 0;
}

/* Soft glow behind the block */
.title::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle,
    rgba(120, 150, 255, 0.18) 0%,
    transparent 70%
  );
  z-index: -1;
  filter: blur(35px);
}

/* Main Heading */
.title h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 2.3rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #9db7ff;
  text-shadow: 0 0 12px rgba(150, 170, 255, 0.7);
  position: relative;
  display: inline-block;
  padding-bottom: 0.7rem;
}

/* Add a little cosmic icon under the title */
.title h2::after {
  content: "✦";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -1.3rem;
  font-size: 1.2rem;
  color: #8fa8ff;
  text-shadow: 0 0 10px rgba(160, 180, 255, 0.8);
  animation: twinkle 1.8s infinite ease-in-out alternate;
}

/* Paragraph styling */
.title p {
  margin-top: 2.3rem;
  line-height: 1.7;
  font-size: 1rem;
  color: #ccd3f7;
}

/* ✦ Twinkle animation for icon */
@keyframes twinkle {
  0% {
    opacity: 0.4;
    transform: translateX(-50%) scale(0.85);
  }
  100% {
    opacity: 1;
    transform: translateX(-50%) scale(1);
  }
}
/* ===== Galaxy Content Box ===== */
.box {
  background: rgba(15, 18, 30, 0.75);
  border: 1px solid rgba(140, 160, 255, 0.2);
  padding: 2rem 33px;
  border-radius: 16px;
  position: relative;
  backdrop-filter: blur(6px);
  color: #dfe4ff;
  box-shadow: 0 0 25px rgba(90, 120, 255, 0.15);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.4s ease;
  height: 100%;
}

/* Nebula glow overlay */
.box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at top right,
      rgba(120, 150, 255, 0.18),
      transparent 60%
    ),
    radial-gradient(
      circle at bottom left,
      rgba(180, 130, 255, 0.15),
      transparent 70%
    );
  z-index: -1;
  opacity: 0.75;
}

/* Hover effect */
.box:hover {
  transform: translateY(-6px);
  box-shadow: 0 0 35px rgba(110, 150, 255, 0.35);
}

/* Heading */
.box h3 {
  font-family: "Orbitron", sans-serif;
  color: #9bb7ff;
  font-size: 1.6rem;
  text-shadow: 0 0 10px rgba(150, 170, 255, 0.6);
  margin-bottom: 1rem;
  position: relative;
}

/* Add small space icon before heading */
.box h3::before {
  content: "🪐";
  position: absolute;
  left: -2.2rem;
  top: 0.1rem;
  font-size: 1.4rem;
  opacity: 0.85;
  animation: orbit 4s infinite linear;
}

/* Orbit animation (subtle wobble) */
@keyframes orbit {
  0% {
    transform: rotate(0deg) translateX(0);
  }
  50% {
    transform: rotate(6deg) translateX(2px);
  }
  100% {
    transform: rotate(0deg) translateX(0);
  }
}

/* Paragraph text */
.box p {
  line-height: 1.7;
  margin-bottom: 1rem;
  color: #d4daf5;
}

/* List styling */
.box ul {
  padding-left: 1.3rem;
  margin-bottom: 1.2rem;
}

.box ul li {
  margin: 0.5rem 0;
  position: relative;
  color: #cbd4ff;
}

/* Star icon bullets */
.box ul li::before {
  content: "✦";
  position: absolute;
  left: -1.2rem;
  color: #98a7ff;
  text-shadow: 0 0 8px rgba(150, 170, 255, 0.8);
  animation: sparkle 1.5s infinite alternate ease-in-out;
}

/* Sparkle animation */
@keyframes sparkle {
  0% {
    opacity: 0.4;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.img-move {
  animation: rotate360 150s linear infinite;
}

@keyframes rotate360 {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ===== SUPER GALAXY RESOURCES SECTION ===== */
.resources {
  position: relative;
  margin-top: 1.5rem;
  padding: 2.5rem 26px;
  border-radius: 22px;
  overflow: hidden;
  color: #e4e7ff;

  /* glassy cosmic panel */
  background: radial-gradient(
      circle at top left,
      rgba(140, 160, 255, 0.18),
      transparent 55%
    ),
    radial-gradient(
      circle at bottom right,
      rgba(190, 130, 255, 0.16),
      transparent 60%
    ),
    rgba(10, 12, 25, 0.92);
  border: 1px solid rgba(150, 170, 255, 0.4);
  box-shadow: 0 0 40px rgba(80, 110, 255, 0.35);
  backdrop-filter: blur(10px);
}

/* animated outer glow frame */
.resources::before {
  content: "";
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: conic-gradient(
    from 210deg,
    rgba(140, 170, 255, 0.1),
    rgba(200, 140, 255, 0.3),
    rgba(120, 200, 255, 0.3),
    rgba(140, 170, 255, 0.1)
  );
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: -2;
  animation: borderGlow 50s linear infinite;
}

/* subtle star noise */
.resources::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.18;
  pointer-events: none;
  z-index: -1;
}

/* Animated light streaks */
.resources .streak {
  position: absolute;
  width: 140px;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(220, 230, 255, 0.9),
    transparent
  );
  opacity: 0.5;
  filter: blur(0.5px);
  animation: streakMove 8s linear infinite;
}

.resources .streak:nth-child(1) {
  top: 15%;
  left: -20%;
  animation-delay: 0s;
}
.resources .streak:nth-child(2) {
  top: 60%;
  left: -30%;
  animation-delay: 2.2s;
}
.resources .streak:nth-child(3) {
  top: 80%;
  left: -10%;
  animation-delay: 4.4s;
}

/* ===== HEADINGS ===== */
.resources h2 {
  font-family: "Orbitron", sans-serif;
  margin-bottom: 1.4rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #a9c1ff;
  text-shadow: 0 0 14px rgba(160, 185, 255, 0.9);
  position: relative;
}

/* Subheadings with icons */
.resources h3 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.5rem;
  margin-top: 17px;
  margin-bottom: 0.6rem;
  color: #b1c6ff;
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.resources h3::before {
  content: "🪐";
  font-size: 1.2rem;
  filter: drop-shadow(0 0 8px rgba(150, 180, 255, 0.8));
}

/* Paragraphs */
.resources p {
  line-height: 1.8;
  color: #d1d8ff;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

/* slight highlight on the first paragraph */
.resources p:first-of-type {
  color: #e1e6ff;
}

/* ===== ANIMATIONS ===== */
@keyframes borderGlow {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes streakMove {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  20% {
    opacity: 0.7;
  }
  80% {
    opacity: 0.7;
  }
  100% {
    transform: translateX(140%);
    opacity: 0;
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .resources {
    padding: 2rem 19px;
    text-align: center;
  }

  .resources h2::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .resources h3 {
    justify-content: center;
  }
}
/* ===== FOOTER BASE ===== */
.galaxy-footer {
  padding: 3.5rem 0 2rem;
  background: linear-gradient(
    145deg,
    rgba(10, 12, 22, 0.95),
    rgba(18, 22, 40, 0.92)
  );
  color: #d6dbff;
  position: relative;
  overflow: hidden;
}

/* Subtle star pattern */
.galaxy-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.12;
  pointer-events: none;
}

/* Nebula glow */
.galaxy-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(150, 180, 255, 0.15),
      transparent 65%
    ),
    radial-gradient(
      circle at 75% 80%,
      rgba(180, 130, 255, 0.15),
      transparent 70%
    );
  pointer-events: none;
  z-index: -1;
}

/* ===== HEADINGS ===== */
.galaxy-footer h4 {
  font-family: "Orbitron", sans-serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #a9c1ff;
  text-shadow: 0 0 8px rgba(160, 180, 255, 0.6);
}

/* ===== LINKS ===== */
.galaxy-footer ul {
  list-style: none;
  padding: 0;
}

.galaxy-footer ul li {
  margin-bottom: 0.4rem;
}

.galaxy-footer a {
  color: #bdc8ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.galaxy-footer a:hover {
  color: #ffffff;
  text-shadow: 0 0 8px rgba(200, 220, 255, 0.7);
}

/* ===== NEWSLETTER ===== */
.footer-newsletter form {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.7rem;
}

.footer-newsletter input {
  flex: 1;
  padding: 0.55rem 0.75rem;
  border-radius: 6px;
  border: 1px solid rgba(150, 170, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

.footer-newsletter button {
  padding: 0.55rem 1rem;
  border: none;
  border-radius: 6px;
  background: linear-gradient(135deg, #7a9dff, #9f71ff);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s ease;
}

.footer-newsletter button:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 12px rgba(150, 180, 255, 0.7);
}

/* ===== BRAND / ABOUT ===== */
.footer-brand img {
  filter: drop-shadow(0 0 12px rgba(140, 160, 255, 0.6));
}

/* ===== BOTTOM FOOTER ===== */
.footer-bottom {
  margin-top: 2rem;
  color: #b7c1ff;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .galaxy-footer {
    text-align: center;
  }

  .footer-newsletter form {
    flex-direction: column;
  }
}
@media (max-width: 1200px) {
  .footer-newsletter form {
    flex-direction: column;
  }
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(255, 255, 255, 0.9)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}
/* ===== 404 WRAPPER ===== */
.page-404 {
  padding: 4rem 2rem;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  text-align: center;
  border-radius: 20px;

  background: linear-gradient(
    135deg,
    rgba(10, 12, 22, 0.95),
    rgba(18, 20, 35, 0.9)
  );
  overflow: hidden;
  color: #e5e9ff;
}

/* Nebula glow */
.page-404::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
      circle at 30% 20%,
      rgba(140, 160, 255, 0.2),
      transparent 70%
    ),
    radial-gradient(
      circle at 75% 70%,
      rgba(180, 130, 255, 0.2),
      transparent 70%
    );
  z-index: -1;
}

/* ===== CONTENT ===== */
.content-404 h2 {
  font-family: "Orbitron", sans-serif;
  font-size: 3rem;
  margin-bottom: 1rem;
  color: #a9c5ff;
  text-shadow: 0 0 15px rgba(150, 180, 255, 0.7);
}

.content-404 p {
  max-width: 550px;
  margin: 0 auto 2rem;
  line-height: 1.75;
  font-size: 1.05rem;
  color: #d0d7ff;
}

/* ===== BUTTON ===== */
.btn-404 {
  padding: 0.75rem 1.7rem;
  background: linear-gradient(135deg, #7ca2ff, #a276ff);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 0 18px rgba(130, 150, 255, 0.5);
  transition: 0.3s ease;
  display: inline-block;
}

.btn-404:hover {
  transform: translateY(-3px);
  box-shadow: 0 0 25px rgba(160, 180, 255, 0.8);
}

/* ===== FLOATING PLANET ===== */
.planet {
  position: absolute;
  width: 140px;
  height: 140px;
  background: radial-gradient(circle, #7fa8ff, #5b75ff);
  border-radius: 50%;
  right: 10%;
  top: 20%;
  filter: blur(0.7px) drop-shadow(0 0 25px rgba(140, 160, 255, 0.6));

  animation: floatPlanet 6s ease-in-out infinite;
}

@keyframes floatPlanet {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(4deg);
  }
  100% {
    transform: translateY(0) rotate(0deg);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .content-404 h2 {
    font-size: 2.4rem;
  }
  .planet {
    width: 110px;
    height: 110px;
    right: 5%;
    top: 10%;
  }
}
.colored {
  font-weight: 800;
  background: linear-gradient(
    90deg,
    #7aa4ff,
    #a677ff,
    #ff6bd6,
    #ffc36b,
    #7aa4ff
  );
  background-size: 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: gradientFlow 17s ease infinite;
}

@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
