

* {
    margin:0;
    padding:0;
    box-sizing: border-box;
}

:root {
    --body-background: #000;
}

a {
    text-decoration: none;
    color: #fff;
    -webkit-tap-highlight-color: transparent;
}

a:visited {
color: #fff;
} 

ul {
    list-style: none;
}

h1 h2 h3 {
    font-weight: 100;
}

button {
    outline: none; /* Entfernt die schwarze Umrandung bei Fokus */
    border: none; /* Entfernt die standardmäßige Rahmenumrandung */
}


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

#container {    

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


#header{ 
    position: fixed;

    width: 100%;
    height: 60px;
    padding-top: 15px;
    z-index: 100;
}

      
  
        #hauptnav {
            position: fixed;
            display: inline-block;
            font-size: 40px;
            width: 100%;
            
            z-index: 100;
        }

            #hauptnav a {
               display: inline-block;
               margin-left: 5px; 
               font-size: 40px;
               height: 45px;
               width: 100%;
               padding-top: 1px;
               padding-left: 20px; 
            }


    main {
        grid-area: main;
        margin-top: 25vh;
        line-height: 20px;
        color: #fff;
    }


    main h1 {
        font-size: 20px;
    }

    main h2 {
        margin-top: 90px;
        padding-bottom: 20px;
        margin-bottom: 30px;  
        font-size: 20px;
    }

    main h3 {
        margin-top: 20px;
        margin-bottom: 20px;
        font-size: 20px;
    }

    main p {
        margin-top: 10px;
        margin-bottom: 10px;
        font-size: 15px;
    }

    main li {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    main a {
        display: block;
        margin-top: 10px;
        margin-bottom: 10px;
    }

    #subscribed {
        background-color: #4CAF50; /* Hintergrundfarbe */
        color: white; /* Textfarbe */
        border-radius: 10px; 
        font-size: 16px; /* Textgröße */
        cursor: pointer; /* Mauszeiger ändern, um zu signalisieren, dass der Button klickbar ist */
        width: 100%; /* Volle Breite */
        padding: 5px 10px 5px 10px;
        text-align: center;
    }

    button {
        background-color: #4CAF50; /* Hintergrundfarbe */
        color: white; /* Textfarbe */
        border-radius: 8px; /* Runde Ecken */
        font-family: Arial, sans-serif; /* Schriftart */
        font-size: 16px; /* Textgröße */
        box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2); /* Schatten */
        cursor: pointer; /* Mauszeiger ändern, um zu signalisieren, dass der Button klickbar ist */
        width: 100%; /* Volle Breite */
        padding: 10px 20px 10px 20px;
        margin-top: 30px;
    }
    
    button:hover {
        background-color: #45a049; /* Hintergrundfarbe beim Hovern */
    }
    
    button:active {
        background-color: #3e8e41; /* Hintergrundfarbe beim Klicken */
    }


    @media screen and (min-width: 500px) {

        #container {    

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

    }
