

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}
 
a {
    text-decoration: none;
    color: #000;
    -webkit-tap-highlight-color: transparent;
}

a:visited {
color: #000;
} 

ul {
    list-style: none;
}

h1 h2 h3 {
    font-weight: 100;
}

body {
    font-family: Tahoma, Arial, sans-serif;
    font-family: 'rubikregular';
    line-height: 1.0;
    height: 100vh;
   
}

#container {    

    width: 100%;
    height: 100%;
    
    display: grid;
    grid-template-columns: 1fr 320px 1fr;
    grid-template-areas: 
    ". main ."    
    ;   
}


#header{ 
    position: fixed;

    width: 100%;
    height: 46px;
    
    background-color: #fff;
    padding-top: 2px;
    z-index: 100;
}

        #logo {
            position:fixed;
            
            width: 100%;   
            background-color: #fff;
            height: 80px;
            padding-top: 3px;
            
            
        }
        
            #logo img {
                
                display: block;  
                height: 70px;
                margin: auto;
               
            }


main {
    grid-area: main;
    margin-top: 90px;
}


    form {
        margin-top: 15vh;
    }


    form label {
        font-size: 15px;
        display: inline-blocK;
    }

    .eingabe {
        margin-bottom: 30px;
    }


    form input {
        width: 100%;
        height: 30px;
        border: none;
        border-bottom: 1px solid #ddd;
        
    }

    form input[type=submit]{
        display: block;
        text-align: center;
        width: 100%;
        height: 35px;
        background-color: #fff;
        border-radius: 50px;
        border: 1px solid #ddd;
        font-size: 16px;
        color: #222;
        
        letter-spacing: 0.1px;
        line-height: 1.3;
       
        margin-top: 60px;
        cursor: pointer;
    }

    form input[type=submit]:hover{
        color: #222;
        background-color: #fbfbfb;
    }

   