/* Logo at the top */
.logo-container {
  text-align: center;
  margin-bottom: 20px; /* Space between the logo and search bar */
}

#bingGoLogo {
  width: 150px;  /* Adjust the size as per your preference */
  height: auto;
}

.clown-background {
  background: url('https://i.imgur.com/ClownImageUrl.png') center center no-repeat;
  background-size: cover;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999; /* make sure it's on top of everything */
  opacity: 0.9; /* optional, just to make it look cooler */
  animation: clownAnim 1s ease-in-out infinite;
}

@keyframes clownAnim {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}
