img {
    border-radius: 20px 20px 20px 20px;
    animation: bounce 2s infinite;
    flex-shrink: 0;
    height: 20px;
  }

  .content {
    text-align: center;
    flex: 1;
  }
  
  h2 {
    font-size: 18px;
  }
  
  html, body {
    height: 100%;
    margin: 0;
    padding: 0;
  }

  body {
    background: linear-gradient(to right, #8DBCC7, #A4CCD9);
    font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    padding: 20px;
    min-height: 100vh;
    box-sizing: border-box;
  }
  
  a {
    background-color: white;
    font-size: 20px;
    border-radius: 10px;
    padding: 10px;
    display: block;
    text-align: center;
    margin: 10px;
    color: #8DBCC7;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s ease;
  }
  
  a:hover {
    background-color: #8DBCC7;
    color: white;
    transform: scale(1.05);
  }
  
  @keyframes bounce {
    40% {
      transform: translateY(-10px);
    }
    
    60% {
      transform: translateY(-5px);
    }
    
    0%,
    20%,
    50%,
    80%,
    100% {
      transform: translateY(0);
    }
  }
  
  .Image{
    display: flex;
    flex-direction: column;
    font-weight: bolder;
  }
  