.special-elite-regular {
  font-family: "Special Elite", system-ui;
  font-weight: 400;
  font-style: normal;
}

html {
  height: 800%;
  background: radial-gradient(
    circle at center,
    #dcdcdc 0%,
    #dcdcdc 40%,
    #f8f8f8 48%,
    #ffffff 58%
  );
  background-attachment: fixed;
}

body {
  overflow: hidden;
  margin: 0;
  height: 800%;
  background: transparent;
  position: relative;
  font-family: "Special Elite", system-ui;
  letter-spacing: 2px;
  color: #001774cf;
  background: #ffffff45;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40vw;
  aspect-ratio: 2 / 3;
  background-image: url("https://s3.amazonaws.com/shecodesio-production/uploads/files/000/161/661/original/Screenshot_2025-03-29_at_16.25.24.jpg?1743275475");
  filter: blur(2.5px);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: -1;
}
.project {
  display: grid;
  place-items: center;
  height: 100vh;
}

h1 {
  font-size: 45px;
  background: #ffffff74;
  padding: 15px;
  backdrop-filter: blur(10px);
  border-radius: 10px;
  padding-inline: 0.6rem;
}
.centre-placeholders {
  background: #ffffff85;
  backdrop-filter: blur(10px);
  font-size: 25px;
  border-radius: 10px;
  text-align: center;
  padding-block: 20px;
  padding-inline: 20px;
  width: 1000px;
  font-style: italic;
}
#example-poem {
  color: rgb(0, 0, 0);
  font-style: normal;
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
  100% {
    opacity: 1;
  }
}

.loading {
  animation: blink 2s infinite; /* ⬅️ slower = gentler */
  color: grey;
  font-style: italic;
}
.poem-style {
  color: #001774cf;
  font-style: normal;
}
/*#text-input {
  font-size: 30px;
}*/
/*#form-1,*/
#text-input,
#submit-input {
  font-size: 25px;
  font-family: "Special Elite", system-ui;
  padding: 15px;
  letter-spacing: 3px;
  border: none;
  color: #a10000;
  background-color: rgba(255, 255, 255, 0.743);
  border-radius: 5px;
  box-shadow: 0 5px 30px rgba(46, 75, 86, 0.247);
  transition: all 200ms ease-in-out;
  outline: none;
}
#text-input {
  color: black;
}
#submit-input:hover {
  background-color: rgb(240, 240, 240);
  cursor: pointer;
}

.images {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}

#blue-img,
#yellow-img {
  width: 500px;
  height: 100vh;
  overflow: hidden;
  flex-shrink: 0;
}

#blue-img img,
#yellow-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#blue-img img {
  -webkit-mask-image: linear-gradient(to right, black 10%, transparent 80%);
  mask-image: linear-gradient(to right, black 10%, transparent 80%);
  backdrop-filter: blur(10px);
}
#yellow-img img {
  -webkit-mask-image: linear-gradient(to left, black 10%, transparent 80%);
  mask-image: linear-gradient(to left, black 10%, transparent 80%);
  backdrop-filter: blur(10px);
}

a {
  text-decoration: none;
  color: rgb(146, 61, 225);
}
a:hover {
  text-decoration: underline;
  color: rgb(158, 85, 226);
}
footer {
  transform: translate(0px, 62px);
}
