body {
    background-color: black;
}


article {
    padding-left: 4rem;
}

header {
    font-size: 2rem;
    color: white;
    padding: 3rem;
    
}


.marcellus-sc-regular {
    font-family: "Marcellus SC", serif;
    font-weight: 400;
    font-style: normal;

}

#loading {
  transform: translateY(-50px);
  opacity: 0;
  animation-name: slideDown;
  animation-duration: 2s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}

a {
  color: white;
  text-decoration: none;
  font-size: 25px;
}

.poppins-thin {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.poppins-extralight {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-medium {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.poppins-semibold {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.poppins-bold {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.poppins-black {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.poppins-thin-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.poppins-extralight-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.poppins-light-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.poppins-regular-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.poppins-medium-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.poppins-semibold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.poppins-bold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.poppins-extrabold-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.poppins-black-italic {
  font-family: "Poppins", sans-serif;
  font-weight: 900;
  font-style: italic;
}



@keyframes slideDown {
  0% {
    opacity: 0;
    transform: translateY(-50);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown2 {
  0% {
    opacity: 0;
    transform: translateY(-50);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: -1;
}

/* ── BLOBS ROW ── */
.blobs {
  display: flex;
  gap: 4rem;
  align-items: center;
  position: relative;
}

.blob-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}



/* BLOB — fast + rotating + gradient */
.blob {
  width: 230px;
  height: 230px;
  background: linear-gradient(135deg, #ff8c00, #a855f7, #3bc4f2);
  background-size: 200% 200%;
  border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  animation:
    blob 5s ease-in-out infinite,
    blobSpin 10s linear infinite,
    blobColor 8s ease-in-out infinite;
}

@keyframes blob {
  0%,
  100% {
    border-radius: 60% 40% 70% 30% / 50% 60% 40% 50%;
  }
  50% {
    border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
  }
}

@keyframes blobSpin {
  to {
    transform: rotate(360deg);
  }
}

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

