@import url("https://fonts.googleapis.com/css2?family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Agbalumo&family=Nunito+Sans:ital,opsz,wght@0,6..12,200..1000;1,6..12,200..1000&display=swap");

body {
  background-image: url("https://w0.peakpx.com/wallpaper/45/256/HD-wallpaper-space-espacio-flag-material-old-spice-star-tumblr.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: scroll;
  text-align: center;
  color: #fff;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  cursor: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22%3E%3Cpath fill=%22%23FFF%22 stroke=%22%23000%22 stroke-width=%222%22 d=%22M5.5 3.21V20.8c0 .45.54.67.85.35l4.86-4.86a.5.5 0 0 1 .35-.15h6.87a.5.5 0 0 0 .35-.85L6.35 2.85a.5.5 0 0 0-.85.35Z%22/%3E%3C/svg%3E")
      12 12,
    auto;
  font-family: "Nunito Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 10px;
  border-radius: 5px;
  margin: 5px 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  /* Spooky text shadow */
}
a {
  cursor: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22%3E%3Cpath fill=%22%23FFF%22 stroke=%22%23000%22 stroke-width=%222%22 stroke-linejoin=%22round%22 d=%22M10 11V8.99c0-.88.59-1.64 1.44-1.86h.05A1.99 1.99 0 0 1 14 9.05V12v-2c0-.88.6-1.65 1.46-1.87h.05A1.98 1.98 0 0 1 18 10.06V13v-1.94a2 2 0 0 1 1.51-1.94h0A2 2 0 0 1 22 11.06V14c0 .6-.08 1.27-.21 1.97a7.96 7.96 0 0 1-7.55 6.48 54.98 54.98 0 0 1-4.48 0 7.96 7.96 0 0 1-7.55-6.48C2.08 15.27 2 14.59 2 14v-1.49c0-1.11.9-2.01 2.01-2.01h0a2 2 0 0 1 2.01 2.03l-.01.97v-10c0-1.1.9-2 2-2h0a2 2 0 0 1 2 2V11Z%22/%3E%3C/svg%3E")
      12 12,
    auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: white;
  /* Pumpkin orange */
  border: 3px solid white;
  /* Purple border */
  padding: 10px;
  border-radius: 5px;
  /* Spooky font */
  position: relative;
  overflow: hidden;
}

h1::before,
h2::before,
h3::before,
h4::before,
h5::before,
h6::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Semi-transparent purple */
  border-radius: 5px;
  z-index: -1;
  /* Behind the text */
  filter: blur(5px);
  /* Blur effect for a glow */
  opacity: 0.7;
}

.agbalumo-regular {
  font-family: "Agbalumo", system-ui;
  font-weight: 400;
  font-style: normal;
}

.Heading1 {
  letter-spacing: 4px;
  font-family: "Agbalumo", system-ui;
  text-decoration: underline;
  transition: transform 0.5s, box-shadow 0.3s;
  /* Smooth transition */
  color: white;
}
.Heading1:hover {
  transform: scale(1.05);
  /* Slightly enlarge on hover */
  box-shadow: 0 0 30px rgb(255, 255, 255);
  /* Glow effect on hover */
  border: 3px solid rgb(255, 255, 255);
  /* Pumpkin orange border */
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 10px;
}

.section {
  background-color: rgba(0, 0, 0, 0.8);
  padding: 20px;
  border-radius: 10px;
  margin: 20px 0;
  margin-top: 100px;
  border: 3px solid yellow;
  /* Yellow border */
  transition: transform 0.5s, box-shadow 0.3s;
  /* Smooth transition */
  position: relative;
}

.section:before {
  content: "";
  position: absolute;
  top: px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border-radius: 10px;
  z-index: -1;
  /* Behind the section content */
}

.section:hover {
  transform: scale(1.05);
  /* Slightly enlarge on hover */
  box-shadow: 0 0 15px rgb(255, 162, 0);
  /* Glow effect on hover */
}

.section-header {
  color: white;
  /* Pumpkin orange */
  font-size: 24px;
  margin-bottom: 10px;
  border: 3px solid rgb(0, 0, 110);
  /* Purple border */
  transition: transform 1s, box-shadow 0.3s;
  /* Smooth transition */
  padding: 5px;
  border-radius: 5px;
  /* Spooky font */
}
.section-header:hover {
  transform: scale(1.01);
  /* Slightly enlarge on hover */
  box-shadow: 0 0 15px rgb(85, 0, 255);
  /* Glow effect on hover */
}

.icon-link {
  display: inline-block;
  margin: 10px;
  border: 1px solid #fff;
  border-radius: 5px;
  padding: 5px;
  background-color: #000;
  transition: background-color 0.3s, transform 0.3s;
}

.icon-link:hover {
  background-color: rgba(255, 255, 255, 0.427);
  transform: scale(1.05);
  /* Slightly enlarge on hover */
  box-shadow: 0 0 20px rgb(255, 255, 255);
  /* Glow effect on hover */
  border: 3px solid rgb(255, 255, 255);
  /* Purple border */
  transition: transform 1s, box-shadow 1s;
  /* Smooth transition */
}

.icon {
  width: auto;
  height: 50px;
}
.Listen-music {
  font-family: "Agbalumo", system-ui;
  letter-spacing: 1.5px;
}

.link {
  text-decoration: none;
  color: white;
  font-size: 18px;
  transition: color 0.3s, transform 0.3s;
  display: block;
  margin: 5px 0;
}

.link:hover {
  color: black;
  /* Blood red */
  transform: scale(1.1);
  /* Enlarge on hover */
}

.footer-text {
  color: white;
  animation: moveText 2s infinite alternate;
  margin-top: 10px;
  text-shadow: 4px 4px 10px rgb(0, 17, 255);
  background-color: rgb(0, 0, 0);
  padding: 10px;
  border: 3px soolid blue;
  border-radius: 5px;
  display: inline-block;
  /* Spooky font */
}

@keyframes moveText {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(10px);
  }
}

.Orange-text {
  color: white;
  animation: moveUpDown 2s infinite alternate;
}

@keyframes moveUpDown {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
  100% {
    transform: translateY(5px);
  }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: #000;
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 10px;
  transition: background 0.3s;
}

::-webkit-scrollbar-thumb:hover {
  background: #6a0dad;
}

body::-webkit-scrollbar-thumb {
  background: linear-gradient(to bottom, #333, #6a0dad);
}
.feedback {
  width: 100%;
  display: flex;
  justify-content: center;
}

#feedbackForm {
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
  text-align: center;
  max-width: 500px;
  width: 100%;
}

textarea {
  width: 90%;
  height: 150px;
  border: 2px solid #00bfff;
  border-radius: 5px;
  padding: 10px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 16px;
  resize: none;
  transition: border-color 0.3s;
}

textarea:focus {
  border-color: #1e90ff;
  outline: none;
}

button {
  background: linear-gradient(45deg, #ff00cc, #3333ff);
  border: none;
  border-radius: 5px;
  color: #fff;
  font-size: 18px;
  padding: 10px 20px;
  cursor: pointer;
  transition: background 5s ease;
}
button:hover {
  background: linear-gradient(45deg, #3333ff, #ff00cc);
}
#confirmationMessage {
  display: none;
  color: #00ff00;
  margin-top: 10px;
}
#notification {
  position: fixed;
  top: 20px;
  right: 20px;
  background: rgba(179, 2, 255, 0.8);
  color: #ffffff;
  font-family: "Agbalumo", system-ui;
  padding: 15px;
  border-radius: 5px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  display: none; /* Hidden by default */
  z-index: 1000;
}

.success {
  background: #00ff00;
}

.error {
  background: #ff0000;
}
.logo {
  border-radius: 10px;
}

/* HallowMoji Halloween-themed styling */

.Spacemoji {
  color: #fff;
  font-size: 30px;
  font-family: Arial, sans-serif;
  text-shadow: 0 0 5px #000;
}

.Spacemoji,
.Spacemoji .inner {
  animation-iteration-count: infinite;
  animation-play-state: running;
}

@keyframes Spacemojis-fall {
  0% {
    transform: translateY(0);
  }

  100% {
    transform: translateY(110vh);
  }
}

@keyframes Spacemojis-shake {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(80px);
  }
}

.Spacemoji {
  position: fixed;
  top: -30%;
  z-index: 9999;
  -webkit-user-select: none;
  user-select: none;
  cursor: default;
  animation-name: Spacemojis-shake;
  animation-duration: 10s;
  animation-timing-function: ease-in-out;
}

.Spacemoji .inner {
  animation-duration: 10s;
  animation-name: Spacemojis-fall;
  animation-timing-function: linear;
}

.Spacemoji:nth-of-type(1) {
  left: 1%;
  animation-delay: 0s;
}
.Spacemoji:nth-of-type(1) .inner {
  animation-delay: 0s;
}

.Spacemoji:nth-of-type(2) {
  left: 10%;
  animation-delay: 1s;
}
.Spacemoji:nth-of-type(2) .inner {
  animation-delay: 1s;
}

.Spacemoji:nth-of-type(3) {
  left: 20%;
  animation-delay: 0.5s;
}
.Spacemoji:nth-of-type(3) .inner {
  animation-delay: 6s;
}

.Spacemoji:nth-of-type(4) {
  left: 30%;
  animation-delay: 2s;
}
.Spacemoji:nth-of-type(4) .inner {
  animation-delay: 4s;
}

.Spacemoji:nth-of-type(5) {
  left: 40%;
  animation-delay: 2s;
}
.Spacemoji:nth-of-type(5) .inner {
  animation-delay: 2s;
}

.Spacemoji:nth-of-type(6) {
  left: 50%;
  animation-delay: 3s;
}
.Spacemoji:nth-of-type(6) .inner {
  animation-delay: 8s;
}

.Spacemoji:nth-of-type(7) {
  left: 60%;
  animation-delay: 2s;
}
.Spacemoji:nth-of-type(7) .inner {
  animation-delay: 1s;
}

.Spacemoji:nth-of-type(8) {
  left: 70%;
  animation-delay: 1s;
}
.Spacemoji:nth-of-type(8) .inner {
  animation-delay: 2.5s;
}

.Spacemoji:nth-of-type(9) {
  left: 80%;
  animation-delay: 0s;
}
.Spacemoji:nth-of-type(9) .inner {
  animation-delay: 3.5s;
}

.Spacemoji:nth-of-type(10) {
  left: 90%;
  animation-delay: 1.5s;
}
.Spacemoji:nth-of-type(10) .inner {
  animation-delay: 3s;
}

.Spacemoji:nth-of-type(11) {
  left: 25%;
  animation-delay: 0.5s;
}
.Spacemoji:nth-of-type(11) .inner {
  animation-delay: 5s;
}

.Spacemoji:nth-of-type(12) {
  left: 75%;
  animation-delay: 2.8s;
}
.Spacemoji:nth-of-type(12) .inner {
  animation-delay: 7s;
}

.Spacemoji:nth-of-type(13) {
  left: 5%;
  animation-delay: 1.2s;
}
.Spacemoji:nth-of-type(13) .inner {
  animation-delay: 2.2s;
}

.Spacemoji:nth-of-type(14) {
  left: 15%;
  animation-delay: 1.8s;
}
.Spacemoji:nth-of-type(14) .inner {
  animation-delay: 4s;
}

.Spacemoji:nth-of-type(15) {
  left: 35%;
  animation-delay: 0.8s;
}
.Spacemoji:nth-of-type(15) .inner {
  animation-delay: 6.5s;
}

.Spacemoji:nth-of-type(16) {
  left: 45%;
  animation-delay: 2.5s;
}
.Spacemoji:nth-of-type(16) .inner {
  animation-delay: 4.2s;
}

.Spacemoji:nth-of-type(17) {
  left: 55%;
  animation-delay: 1s;
}
.Spacemoji:nth-of-type(17) .inner {
  animation-delay: 3.8s;
}

.Spacemoji:nth-of-type(18) {
  left: 65%;
  animation-delay: 2.2s;
}
.Spacemoji:nth-of-type(18) .inner {
  animation-delay: 5.5s;
}

.Spacemoji:nth-of-type(19) {
  left: 85%;
  animation-delay: 0.9s;
}
.Spacemoji:nth-of-type(19) .inner {
  animation-delay: 6s;
}

.Spacemoji:nth-of-type(20) {
  left: 95%;
  animation-delay: 3s;
}
.Spacemoji:nth-of-type(20) .inner {
  animation-delay: 8s;
}

.Spacemoji:nth-of-type(21) {
  left: 15%;
  animation-delay: 1s;
}
.Spacemoji:nth-of-type(21) .inner {
  animation-delay: 0.8s;
}

.Spacemoji:nth-of-type(22) {
  left: 25%;
  animation-delay: 2s;
}
.Spacemoji:nth-of-type(22) .inner {
  animation-delay: 2s;
}

.Spacemoji:nth-of-type(23) {
  left: 35%;
  animation-delay: 1.5s;
}
.Spacemoji:nth-of-type(23) .inner {
  animation-delay: 3.5s;
}

.Spacemoji:nth-of-type(24) {
  left: 45%;
  animation-delay: 0.5s;
}
.Spacemoji:nth-of-type(24) .inner {
  animation-delay: 4.5s;
}

.Spacemoji:nth-of-type(25) {
  left: 55%;
  animation-delay: 1.7s;
}
.Spacemoji:nth-of-type(25) .inner {
  animation-delay: 5s;
}

.Spacemoji:nth-of-type(26) {
  left: 65%;
  animation-delay: 2.5s;
}
.Spacemoji:nth-of-type(26) .inner {
  animation-delay: 6.5s;
}

.Spacemoji:nth-of-type(27) {
  left: 75%;
  animation-delay: 0.8s;
}
.Spacemoji:nth-of-type(27) .inner {
  animation-delay: 7.2s;
}

.Spacemoji:nth-of-type(28) {
  left: 85%;
  animation-delay: 1.6s;
}
.Spacemoji:nth-of-type(28) .inner {
  animation-delay: 4.2s;
}

.Spacemoji:nth-of-type(29) {
  left: 5%;
  animation-delay: 2.4s;
}
.Spacemoji:nth-of-type(29) .inner {
  animation-delay: 2.8s;
}

.Spacemoji:nth-of-type(30) {
  left: 10%;
  animation-delay: 3s;
}
.Spacemoji:nth-of-type(30) .inner {
  animation-delay: 5.5s;
}
.nav-bar {
  display: flex;
  justify-content: space-around;
  border: 2px solid white;
  padding: 5px 10px;
  border-radius: 10px;
  list-style-type: none;
}
li a {
  text-decoration: none;
  color: white;
}
a:hover {
  text-decoration: underline;
}