#Themen {

    padding-top: 20px;
    width: inherit;
    display:flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-content: flex-start;



}

.Thema{

    font: 25px  bolder;
    font-family: inherit;
    color: White;
    background: linear-gradient(225deg,rgb(72, 115, 144),rgb(73, 118, 148));
    box-shadow: 2px 3px 4px 0px rgb(0 0 0 / 34%);
    margin: 15px 0;
    padding:13px;
    flex-grow: 1;
    text-align: center;
    border-radius: 5px;


}

@keyframes bounce {
    0%, 20%, 60%, 100% {
      -webkit-transform: translateY(0);
      transform: translateY(0);
    }
  
    40% {
      -webkit-transform: translateY(-20px);
      transform: translateY(-20px);
    }
  
    80% {
      -webkit-transform: translateY(-10px);
      transform: translateY(-10px);
    }
  }

  .Thema:hover {
    animation: bounce 0.75s;
  }

.Thema img {

    width:150px; 
    height: 150px;
    

}

.TLink{

    margin: 0px;
    width: fit-content;
}
