body {
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh; 
    background-image: linear-gradient(-150deg, #808080, #696969, #505050, #383838, #000000);
}
.container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    max-width: 900px;
 
    
    
}

.container > div{
    width: 400px;
    height: 200px;
    background-image: linear-gradient(215deg, #048f70, #285777, #084849, #03292c, #768080);  
    margin: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.5); 
    display: flex;
    justify-content: center;
    align-items: center;
    color: white; /* Weiße Schrift für guten Kontrast */
    font-size: 20px;
    text-align: center;
  
}

.item1{
    border-radius: 6px 50px 6px 50px;
    box-shadow: grey 3px 3px 3px;
}

.item{
    border-radius: 50px 6px 50px 6px;
    box-shadow: grey 3px 3px 3px;
  
}

#InitialLogo{
    width: 200px;
    height: auto;
}


footer > div{
    position: absolute;
    color: white;
    left: 2px;
    bottom: 2px;
}