body{
    max-width: 1200px;
    background-color: #f3eef9;
    color: #4a3b5c;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    margin: 50px auto;
}

h1 {
    font-size: 32px;
    font-weight: bold;  
}

header {
    text-align: center;
}

a {
    text-decoration: none;
    background-color: #C9B3E0;
    font-size: 14pt;
    margin: 30px;
    color: #4a3b5c;
    border: 1px solid;
    padding: 10px 20px 10px 20px;
    border-radius: 999px;
    transition: 0.5s;
    box-shadow: 2px 2px #4a3b5c;
}

a:hover {

    background-color: #f3eef9;
    color: #4a3b5c;
    box-shadow: 2px 2px #4a3b5c;
    border: 1px solid #4a3b5c;
}

main {

    margin-top: 50px;
    display: flex;
    gap: 60px;   
}

.lebenslauf {
    
    display: flex;
    flex: 0 0 50%;    
    flex-direction: column-reverse;
    align-items: center;    
    

    
}



 .triputseite {
    display: flex;
    flex-direction: column-reverse;
    
    align-items: center;
    flex: 1;
    
    
    
 }

 img {
    
    max-height: 500px;
    height: 100%;
    
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 14px;
    padding: 25px;
    background-color: #4a3b5c;
 }

 @media (max-width:555px)
 {

   main {

    display: flex;
    flex-direction: column;
    padding: 0px;
    margin: 0px;
   } 

img {
    object-fit: cover;
    max-height: 250px;
}

 }

