/* style.css */
body,html{
    margin:0;padding:0;
    background-color:rgb(63,115,185);
    color:#eee;
    font-size:14pt;
}
#container{
    display: grid;
    grid-template-columns: auto 250px auto;
    grid-template-rows: repeat(5, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    min-height:100vh;
    width:100vw;
    }
    a{color:#eee; text-decoration: none;}
    #logo {
        grid-area: 2 / 2 / 3 / 3;
        background-image: url("sailing.svg");
        background-position: left center; 
        background-repeat: no-repeat; 
        background-size: contain;
        min-height:100px;
    }
    #adressblock { grid-area: 3 / 2 / 4 / 3; }
    #kontaktblock { grid-area: 4 / 2 / 5 / 3; }
    #individualblock { grid-area: 5 / 2 / 6 / 3; } 
