.container { 
  max-width: 100%;
  min-width: 500px;
  display: grid;
  grid-template-columns: 25% 75%;
  grid-template-rows: auto auto auto;
  grid-gap: 10px;
  margin: 20px;
}

header {
  grid-row: 1/2;  
  grid-column: 1/3;
}

nav {
  background: #C8ADFF;
  grid-column: 1/3;
  grid-row: 1/2;
  align-self: center;
  padding: 10px;
  font-family: "shrikhand", serif;
  font-size: x-large;
  line-height: 40px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

nav img {
  grid-column: 1/2;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  margin: 0;
  padding: 0;
  place-content:center;
  align-self: center;
}

nav ul {
  grid-column: 2/3;
  grid-row: 1/2;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  margin: 5px;
  padding: 5px;
  align-content: center;
}

nav ul li {
  display: inline;
  margin-left: 10px;
  margin-right: 10px;
}

a:link {
  color: #2f076a;
}

a:visited {
  color: #005a5e;
}

a:hover {
  color: #ff7600;
}

article {
  background: #C8ADFF;
  grid-column: 1/3;
  grid-row: 2/3;
  text-align: left;
  font-size: 14px;
  line-height: 18px;
  padding: 20px;
  font-family: "lato-regular", sans-serif;
}

img {
  display: flex;
  flex-direction: row;
  padding: 10px;
}

body {
    height: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
  /* background image */
    background-image: url("images/asphalt_bg.jpeg");
    background-color: #666666;
    background-position: center;
    background-repeat: repeat;
    background-size: cover;
    position: relative;
}

h1 {
    font-family: "Shrikhand", serif;
    text-align: center;
    color: #005a5e;
    font-size: 40px;
}

h2 {
  font-family: "shrikhand", serif;
  text-align: center;
  font-size: 30px;
  color:#9b4800;
}

h3 {
  font-family: "lato-bold", sans-serif;
  font-size: 20px;
  color: #2f076a;
}

p {
  font-family: "lato-regular", sans-serif;
  font-size: 16px;
  line-height: 23px;
  color: #2f076a;
}

img {
    align-content: center;
    max-width: 90%;
}

.copyright {
    background:#FFF3A4;
    grid-column: 1/3;
    grid-row: 3/4;
    text-align: center;
    padding: 10px;
}

.copyright p{
  color: #2f076a;
  font-size: 12px;
  line-height: 10px;
}

form {
  grid-column: 1/2;
  grid-row: 2/3;
  display: flex;
  flex-direction: column;
}

.contactform {
	width: 500px;
	padding: 25px 25px 25px 25px;
	border: 1px solid purple;
}

input[type="submit"] {
  background: #46afb4;
  border: none;
  padding: 10px 25px 10px 25px;
  border-radius: 3px;
  cursor: pointer;
  color:#2f076a;
}

input[type="submit"]:hover {
  background: #666;
}

/* from W3Schools for Gallery */

div.gallery {
    border: 1px solid #ccc;
  }
  
  div.gallery:hover {
    border: 1px solid #777;
  }
  
  div.gallery img {
    width: 100%;
    height: auto;
  }
  
  div.desc {
    padding: 15px;
    text-align: center;
    font-size: 16px;
    line-height: 23px;
    font-family: "lato-regular" , sans-serif;
    color: #2f076a;
  }

  .responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
  }
  
  @media only screen and (max-width: 700px) {
    .responsive {
      width: 49.99999%;
      margin: 6px 0;
    }
  }
  
  @media only screen and (max-width: 500px) {
    .responsive {
      width: 100%;
    }
  }
  
  .clearfix:after {
    content: "";
    display: table;
    clear: both;
  }

/* For Fonts */

  .shrikhand-regular {
    font-family: "Shrikhand", serif;
    font-weight: 400;
    font-style: normal;
  }

  .lato-thin {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: normal;
  }
  
  .lato-light {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: normal;
  }
  
  .lato-regular {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
  .lato-bold {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
  }
  
  .lato-black {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: normal;
  }
  
  .lato-thin-italic {
    font-family: "Lato", sans-serif;
    font-weight: 100;
    font-style: italic;
  }
  
  .lato-light-italic {
    font-family: "Lato", sans-serif;
    font-weight: 300;
    font-style: italic;
  }
  
  .lato-regular-italic {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-style: italic;
  }
  
  .lato-bold-italic {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: italic;
  }
  
  .lato-black-italic {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-style: italic;
  }
  