* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: bisque;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #4b0b0b73;
  padding: 1rem 2rem;
}

.logo img {
  max-width: 100%;
  height: 50px;

}

.nav-links {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 1rem;
}

.nav-links a:hover {
  text-decoration: underline;
}

.content {
  display: flex;
  flex-wrap: wrap;
  padding: 2rem;
  gap: 2rem;
  justify-content: center;
}

.text-section {

  background-color: bisque;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}


button {
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  cursor: pointer;
  z-index: 20;
}

#watermelon-hippo {
  width: 30vw;
}
/* Partymodus Styles */
@keyframes blinkColors {
  0% {
    background-color: red;
  }

  25% {
    background-color: yellow;
  }

  50% {
    background-color: lime;
  }

  75% {
    background-color: cyan;
  }

  100% {
    background-color: magenta;
  }
}

@keyframes rotateText {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes flyAround {
  0% {
    transform: translate(-15vw, 0);
  }

  25% {
    transform: translate(30vw, 5vh);
  }

  50% {
    transform: translate(-40vw, 20vh);
  }

  75% {
    transform: translate(15vw, -15vh);
  }

  100% {
    transform: translate(-15vw, 0);
  }
}


.party .navbar {
  animation: blinkColors 1s infinite;
}

.party #headline {
  animation: rotateText 2s linear infinite;
  font-size: 3rem;
  color: red;
  pointer-events: none;
}


.party #no-content {
  position: absolute;
  animation: flyAround 3s infinite ease-in-out;

  font-size: 6rem;
  color: greenyellow;
  font-weight: 900;
  pointer-events: none;
}

.party {
  background-image: url("data/ai_hippo_birthday.jpeg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.party button {
  background-color: yellow;
  border-color: purple;
}


/* Mobile-specific overrides */
@media (max-width: 768px) {
  .party #no-content {
    font-size: 3rem;
    font-weight: 900;
    pointer-events: none;
  }

  @keyframes flyAround {
    0% {
      transform: translate(-15vw, -15vh);
    }

    25% {
      transform: translate(30vw, -10vh);
    }

    50% {
      transform: translate(-40vw, 5vh);
    }

    75% {
      transform: translate(15vw, -30vh);
    }

    100% {
      transform: translate(-15vw, -15vh);
    }
  }
}