
/* 
https://www.joshwcomeau.com/css/center-a-div/
Wieso das mit max-width funktioniert verstehe ich noch nicht
*/
.logo{
    padding: 10px;
    max-width: fit-content;
    margin: auto;
}

.logo img {
    max-width: 100%;
    width: fit-content;
    height: auto;
}

/*
Das zum Centern eines Divs verstehe ich wiederum
*/
.header-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    
}

.section-seperator{
    background-color: #dff1e3;
    margin: 10px;
    height: 2px;
    width: 100%;
}


.header{
    font-size: 30px;
    color: #666;
  	text-align: center;
}