body {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background-color: #1b2431;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue'}

    #wrapper, #wrapper2, #wrapper3 {
        display: flex;
        flex-flow: column;
        justify-content: center;
        align-items: center;
        width: 50%; /* Verkleinert auf die Hälfte */
        height: 25%; /* Verkleinert auf die Hälfte */
        margin: 10px; /* Abstand zwischen den Wrappern */
    }
    
    h2{
    
    font-size: 2rem;
    font-family: Roboto;
    margin: 0 0 0 0;
    padding: 0 0 0 0;
   color: tomato;
    }
    
    .element{
    width: 15rem;
    height: 8rem;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    transition: all 250ms ease;
    position: relative;
    background-color:white;
    margin-bottom: 30px;
    }


    .effekt:hover{

        box-shadow: inset 0 0 0 0.5rem tomato;
    
    }
    
    /*zweiter effekt */
    
    .effekt:hover{
    
    border-radius: 8rem;
    
    }


div{

text-align: center;


}

p{

    color: white;
    line-height: 1.5;
    

}

a{

color: tomato;


}


