:root {
    --mxw: 1024px;
    --miw: 800px;

    --plt-black: #000;
    --plt-dark: #5c3969;
    --plt-shaded: #b98bb2;
    --plt-dull: #d9bfdc;
    --plt-pale: #f3dfec;
    --plt-grey: #f2f2f2;
    --plt-white: #fff;

}

/* debug */
/* * { border: 1px solid black; } */
.mds-geometry-block {
    /* background-color: aquamarine; */
    /* height: 300px; */
}
/* debug */

* {
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */  /* 2 */
    /* font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; */  /* 1 */
    font-family: 'Times New Roman', Times, serif;
}

header {
    position: relative;
}

.mds-max-width {
    max-width: var(--mxw);
    width: auto;
}

.mds-min-width {
    min-width: var(--miw);
}

.mds-margin-lr-auto { 
    margin-left: auto;
    margin-right: auto;
}

.mds-margin-0 {
    margin: 0;
}

.mds-prevent-select {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

.mds-section-headline{
    color: var(--plt-dark);
    font-size: 32px;
    text-align: center;
    margin-top: 50px;
    margin-bottom: 20px;
}

#mds-header {
    margin-top: 60px;
}

#mds-header-img {
    max-width: var(--mxw);
    width: 100%;
    height: 100%;
}

#mds-lower-header-container {
    margin-top: 150px;
    background-color: var(--plt-white);
}

#mds-lower-header-img {
    position: absolute;
    top: 130%;
    left: 52%;
    transform: translate(-50%, -50%);
}

#mds-contact {
    display: flex;
    flex-direction: row;
}

@media only screen and (max-width: 600px) {
    #mds-header-img {
        max-width: 100vw;
    }

    #mds-lower-header-container {
        margin-top: 30px;
        background-color: var(--plt-white);
    }

    #mds-lower-header-img {
        max-height: 90vw;
        transform: rotateZ(90deg);
        top: 30%;
        left: 43%;
    }
    
    .mds-min-width{
        min-width: 100vw;
    }

    .mds-margin-lr-auto {
        margin-left: 0;
        margin-right: 0;
    }

    #mds-contact {
        flex-direction: column-reverse;
    }
}
