/*Padding und border als Bestandteil von height und width*/
* {
    box-sizing: border-box;
}
/* Style the body */
html, body{
    font-family: Arial, Helvetica, sans-serif;
    width: 100%;
    height: 100%;
    margin: 0;
    background-color: silver;
}
.flex-body{
    display:flex;
    flex-direction: column;
    margin:auto;
    width: 700px;
    height: 100%;
    background-color: aliceblue;
}

.header{
    display: flex;
    flex-direction: row;
    justify-content: center;
    /*align-items: center;*/
    background-color: aliceblue;
    color: white;
    padding: 0.1rem;
}
.header-blue{
    background-color: cornflowerblue;
}

.attention{
    display: flex;
    flex-direction: row;
    background-color: aliceblue;
}

.row{
    flex:1;
    padding: 0.5rem;
    /*background-color: blue;*/
    text-align: center;
    /*border: 2px solid red;*/
    align-content: center;
}
.row-start{
    text-align: start;
}

label {
    display: block;
}
.row-flexhalf{
    flex:0.5;
}
.row-flexquater{
    flex:0.15;
}
.row-textstart{
    text-align: start;
}
.img-centered {
    max-width: 100%;
    max-height: 100%;
    display: block;
    margin: auto;
}
.img-halfheight{
    height: 8rem;
}
.img-iconheight{
    height: 3rem;
}

.main{
    /*height: 100px;*/
    padding: 2rem;
    background-color: aliceblue;
}

.filler{
    flex: 1;
    height:400px;
    background-color: aliceblue;
}

.footer{
    display: flex;
    flex-direction: row;
    justify-content: start ;
    /*align-items: center;*/
    background-color: lightslategrey;
    color: white;
    padding: 0.1rem;
}

h4{
    color: blue;
}
.h4-lowheight{
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}
.p-lowheight{
    padding-top: 0 !important;
    padding-bottom: 1rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.rot{
    color: brown;
}

/* Responsive layout - when the screen is less than 700px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 700px) {
    .flex-body{
        width: 100vw;
    }
}