body {
    font-family: 'Lato';
    background:black;
    margin:0;
    color:white;
    display:grid;
    grid-template-columns: auto;
    grid-template-rows: auto auto 120px;
    grid-template-areas: 
    "header"
    "body"
    "footer";
}

a {
    text-decoration:none;
    color:white;
    font-size:1em;
    
}

header {
    grid-area: header;
    background:black;
    padding: 1em;
    
}

.container {
    grid-area: body;
    display:grid;
    grid-template-columns: 100% auto;
    padding: 4em 1em;
    height: 100%;
}

footer {
    grid-area: footer;
    background:black;
    
}

ul {
    display:grid;
    list-style-type:none;
    margin:0;padding:0;
    grid-template-columns: repeat(3, auto);
    grid-template-rows: repeat(2, auto);
}

ul li {
    padding: 2em;
    color:white;
}
ul li span {
    display:block;
    font-size:1.4em;
    margin-bottom:1em;
    color: white;
}

@media only screen and (max-width: 500px) {
    
    body {
        grid-template-areas: 
            "header"
            "body"
            "footer"
            ;
    }

    ul, .container {
        grid-template-columns: auto;
        grid-template-rows: auto;
    }

    .container {
        text-align:center;
    }
    
}

#svg-container {
    display: flex;
    align-items: center;
    background-color: black;
    height: 100%;
    }

#svg8 {
    margin: 0 auto;
    display: block;
    }

.logo {
    display: block;
    text-indent: -9999px;
    width: 350px;
    height: 120px;
    background-size: 350px 120px;
    }
    
path {
    fill: white;
    transition: all 1s ease-in-out;
    }
    
path:hover {
    -webkit-opacity: 0.95;
    -moz-opacity: 0.95;
    opacity: 0.95;
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -ms-transition: all 1s ease;
    -o-transition: all 1s ease;
    transition: all 1s ease;
    fill:silver;
}




input[type=email], textarea, select {
    width: 160px;
    padding: 6px 20px;
    margin: 4px 0;
    display:block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
  }
  
  label {
    padding: 6px 20px;
    margin: 4px 0;
    display:block;
  }
  
  button[type=submit] {
    width: 160px;
    background-color:white;
    color: #000;
    padding: 6px 0px;
    margin: 8px 20px;
    border-radius: 4px;
    cursor: pointer;
  
  }
  
  div.form_input {
    position:absolute;
    right:0px;
    bottom: 0px;
  
    border-radius: 0px;
    background-color: black;
  
    font-size: 85%;
    
  }
  
  .btn {
    background-color: white;
    color: black;
    text-align: center;
    transition: 0.3s;
    border: #ccc 1px solid;
  }
  
  .btn:hover {
    background-color:black;
    color: white;
    border: #444 1px solid;
  
  }
  
     