body {
    background-color: #0a1931;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    background-image: linear-gradient(135deg, #0b16b3 0%, #020c1b 100%);
  }
  
  .container {
    text-align: center;
    position: relative;
  }
  
  h1 {
    font-size: 36px;
    color: #ffffff;
    margin-top: 20px;
  }
  
  p {
    font-size: 20px;
    color: #ffffff;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .easter-egg {
    width: 300px;
    height: 300px;
    background-image: url(img/gmp.gif);
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
    border-radius: 50%;
    transition: transform 0.3s, box-shadow 0.3s, background-color 0.3s;
    position: relative;
    margin: 0 auto;
  }
  
  .easter-egg:hover {
    transform: scale(1.1);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
  }
  
  .corner-1, .corner-2, .corner-3, .corner-4 {
    position: absolute;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    z-index: -1;
    transition: top 0.3s, left 0.3s, background-color 0.3s;
  }
  
  .corner-1 {
    top: -25px;
    left: -25px;
  }
  
  .corner-2 {
    top: -25px;
    right: -25px;
  }
  
  .corner-3 {
    bottom: -25px;
    right: -25px;
  }
  
  .corner-4 {
    bottom: -25px;
    left: -25px;
  }
  
  .easter-egg:hover .corner-1 {
    top: -50px;
    left: -50px;
    background-color: #0a45a3;
  }
  
  .easter-egg:hover .corner-2 {
    top: -50px;
    right: -50px;
    background-color: #1f6deb;
  }
  
  .easter-egg:hover .corner-3 {
    bottom: -50px;
    right: -50px;
    background-color: #1050b6;
  }
  
  .easter-egg:hover .corner-4 {
    bottom: -50px;
    left: -50px;
    background-color: #13428f;
  }

  /* Der bisherige CSS-Code bleibt unverändert */

.easter-egg.clicked {
    animation: spinAndScale 1s ease-in-out;
  }
  
  @keyframes spinAndScale {
    0% {
      transform: scale(1);
    }
    50% {
      transform: rotate(180deg) scale(1.5);
    }
    100% {
      transform: rotate(360deg) scale(1);
    }
  }
  
  