@import "liberation.css"

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

    }


    html, body {
        height: 100vh;
        width: 100vw;
        margin: 0px;

        background-color: #4e6e87;

        
    }


    .container {
        display: grid;
        grid-template-columns: 40% auto;
        grid-template-rows: repeat(auto);
        
        position: relative;
  
        height: 100%;
        width: 100%;

        background-color: #4e6e87;
    
    }


    .logo {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 1;
        grid-row-end: 3;
        
        padding-left: 2vw;
        padding-right: 0%;
        
        background-color: #4e6e87;
        
        position: relative;

    }


    .logo img {
        display: block;
        
        max-width: 100%;
        height: 100%;
        object-fit: contain;
        
        background-color: #4e6e87;

    }

    
    .title {
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 1;
        grid-row-end: 2;
        
        align-self: center;
        
        padding-left: 2vw;
        padding-right: 0%;
        
        background-color: #4e6e87;
        
        position: relative;

    }


    .title p {
        background-color: #4e6e87;
        
        color: white;

        font-family: 'liberation_serifitalic', serif;
        font-size: calc(19px + 1.5vw);
        
    }


    .header {
        max-width: 100%;
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 2;
        grid-row-end: 3;
        
        align-self: center;
        
        height: calc(100% - 50px);

        color: white;
        background-color: #4e6e87;
        
        padding: 1%;
        margin: 1rem;
        
        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


    .navbar {
        grid-column-start: 1;
        grid-column-end: 2;
        grid-row-start: 3;
        grid-row-end: 4;
        
        position: relative;

        padding: 1%;
        margin: 1rem;
        
        color: white;
        background-color: darkgray;
        
        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }

    
    .text {
        max-width: 100%;
        grid-column-start: 2;
        grid-column-end: 3;
        grid-row-start: 3;
        grid-row-end: 4;
        align-items: center;
        
        padding: 1%;
        margin: 1rem;
        
        height: calc(100% - 50px);

        background-color: #4e6e87;

        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


    .text p, ul, h1, h2, h3 {
        margin-bottom: 1.5vh;
        color: white;
        
    }


    .footer {
        max-width: 100%;
        grid-column-start: 1;
        grid-column-end: 3;
        grid-row-start: 4;
        grid-row-end: 5;
        
        height: calc(100% - 50px);

        color: white;
        background-color: #4e6e87;

        padding: 1%;
        margin: 1rem;
        
        font-family: 'liberation_sansregular', sans-serif;
        font-size: calc(16px + 0.2vw);
        
    }


@media only screen and (max-width: 812px) {

    .menu {
        
        line-height: 4;
        list-style-type: none;

    }


    .link-list {
        
        line-height: 5;
        
    }
    
}


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

    .menu {
        
        line-height: 1.5;
        list-style-type: none;

    }

    
    .link-list {
        
        line-height: 2.5;
        
    }

}

    .text ul {
        padding-left: 2vw;
        color: white;
        
    }


    a:link {
    color:inherit;
    
    }


.menuwrapper {
        display: none;

}
