﻿html {
    font: normal 1.25em arial, verdana;
    box-sizing: border-box;
}

body {
    background-image: linear-gradient(to right, white, #888);
}


div {
    /*border: 1px dashed red;*/
}

.mainContainer {
    display: table;
    margin: 0 auto;
    padding: 50px;
    border: 1px solid darkgray;
    box-shadow: 5px 5px 15px #555;
}


/* Basic */
.hamburger-icon-container {
    color: red;
    height: 1.7em;
    width: 1.7em;
    position: relative;
    cursor: pointer;
    background: currentColor;
    border: 10px solid currentColor;
    border-radius: 3px;
}

.hamburger-icon,
.hamburger-icon:before,
.hamburger-icon:after {
    content: '';
    position: absolute;
    height: 3px;
    width: 1.7em;
    background: white;
    transition: all .2s ease;
}

.hamburger-icon {
    top: 0.75em;
}

    .hamburger-icon:before {
        top: -0.55em;
    }

    .hamburger-icon:after {
        top: 0.55em;
    }
/* Closing*/
.hamburger-active .hamburger-icon-container {
    color: lime;
}

.hamburger-active .hamburger-icon {
    background: transparent;
    transform: rotate(-135deg);
}

    .hamburger-active .hamburger-icon:before,
    .hamburger-active .hamburger-icon:after {
        top: 0;
    }

    .hamburger-active .hamburger-icon:before {
        transform: rotate(90deg);
    }

#Menu {
    position: absolute;
    top: 20px;
    left: 50px;
    background: darkgray;
    color: white;
    padding: 15px;
    opacity: 0;
    transition: height 0.5s ease, opacity 1s ease;
    background-image: linear-gradient(to right, #aaa, #888);
    border: 1px solid darkgray;
    box-shadow: 5px 5px 15px #555;
    border-radius: 10px;
}

#MenuList {
}

    #MenuList a {
        text-decoration: none;
        color: lightgrey;
    }

        #MenuList a:visited {
            text-decoration: none;
            color: white;
        }

.Intro {
    width: auto;
    text-align: center;
}

.Footer {
    visibility: hidden;
}

    .Footer::before {
        content: "tablet.css";
    }

.main {
    position: relative;
    display: table;
    /*    top: 30px;
    left: 50%;
*/ width: 1200px;
    margin: auto;
}

.left {
    float: left;
    width: 66%;
    overflow: auto;
    /*border: 1px solid red;*/
}

.right {
    float: right;
    width: 33%;
    overflow: hidden;
    /*border: 1px solid blue;*/
}


h3 {
    font: normal 2em arial, verdana;
}

#kontakt {
    border: 3px dashed yellow;
    float: right;
    margin-right: 3em;
    width: 9em;
}

.Wilkommen {
    text-indent: 0.25em;
}

.Liste {
}

/*p {
    margin-bottom: 0;
}

    p + ul {
        margin-top: 0;
    }
*/
.Tabelle {
    display: table;
}

.Zelle {
    display: table-row;
}
