body {
  background-image: url(/img/bg.webp);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
  min-width: 100vw;
  margin: 0;
  padding: 0;
  color: rgb(255, 255, 255);
  font-family: Verdana;
}

a {
  color: yellow; /* Changes the default link color */
}

.title {
  transform: rotate(-20deg);
  color: yellow;;
  display: inline-block;
  margin-top: 70px;
  margin-left: 30px;
  animation: pulsate 1.5s infinite;
}

@keyframes pulsate {
  0% {
    text-shadow: 0 0 10px yellow, 0 0 20px yellow;
    transform: rotate(-20deg) scale(1);
  }
  50% {
    text-shadow: 0 0 30px yellow, 0 0 60px yellow;
    transform: rotate(-25deg) scale(1.08);
  }
  100% {
    text-shadow: 0 0 10px yellow, 0 0 20px yellow;
    transform: rotate(-20deg) scale(1);
  }
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  gap: 15px;
}

nav.nav {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

nav ul li {
  position: relative;
}

nav ul li a {
  font-size: 1.25rem;
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  display: block;
  transition: background 0.2s, color 0.2s;
}

nav ul li a:hover {
  background: #444;
  color: #ffd700;
}

ul.dropdown {
  display: none;
  position: absolute;
  background: #333;
  min-width: 120px;
  z-index: 1;
  padding: 0;
  margin: 0;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

ul.dropdown li a {
  color: #fff;
  padding: 10px 18px;
  display: block;
  text-decoration: none;
  white-space: nowrap;
  font-size: 1.25rem;
  transition: background 0.2s, color 0.2s;
}

.Yo {
  text-align: right;
  display: block;
  margin: 20px 20px 20px auto; /* top, right, bottom, left */
  max-width: 600px;
}

.Yo_title {
  color: yellow;
}


nav ul li:hover > ul.dropdown {
  display: block;
}

.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #333;
  text-align: center;
  padding: 10px 0;
  box-shadow: 0 -2px 5px rgba(0,0,0,0.05);
}