


body{
	color: white;
}

h1 {
    font-family: "Montserrat", sans-serif;
    text-align: left;
    margin-left: 10px;
    font-size: 50px;
}


p {
    font-family: "Open Sans", sans-serif;
    color:darkred;
    text-align: left;
    margin-left:10px;
    margin-right:10px;
}

#container{
    
    width: 80%;
    margin: 0 auto;
}


#nav {
    padding: 0;
    list-style-type: none;
}

#nav li {
    margin: 0;
    padding: 0;
    margin-top: 10px;
    border-bottom: 1px solid #ccc;
    text-decoration: none;
}

#nav a:link, a:visited {
    display:block;
    color: darkred;
    background-color: #;
    font-weight: 500;
    text-decoration: none;
    padding: 5px;
    font-family: Open Sans, Arial, sans-serif;
}

#nav a:hover, a:active {
    background-color: white;
}

.navigation{
  list-style: none;
  background: gray;
  margin:0;
  padding: 0;
  display: flex;
  flex-flow:column;
}

.navigation a{
  text-decoration: none;
  display: block;
  text-align:center;
  color: white;
  padding:10 px;
  border-top:1px solid black;
  border-bottom:1px solid white;
}

.header {
    grid-area: a;
    background-image:url("background.jpg");
      background-repeat: no-repeat;
      background-size: cover; 
      background-attachment: fixed; 
  }
  .section1{
    grid-area: b;
  }
  .section2 {
    grid-area: c;
  }
  .section3 {
    grid-area: e;
  }
  .image {
    grid-area: d;
    margin-top: 0;
  }

  .header p:first-of-type, .section2 p:first-of-type {
    margin-top: 10;
  }
}



.wrapper{
  display: flex;
  flex-flow: row wrap;
  font-weight: bold;
  text-align: center;
}


.main{
  display:flex;
  flex-flow: column;
}


@media (min-width: 200px) {

  .navigation {
    flex-flow: row;
    justify-content:flex-flow;  }
    article {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    grid-gap: 10px;
    grid-template-areas:
        "a a a"
        "b b b"
        "c c d";
  }
}

@media (min-width: 600px) {

  .navigation {
    flex-flow: row;
    justify-content:flex-flow;  }
    article {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    grid-gap: 10px;
    grid-template-areas:
        "a a a"
        "b b d"
        "c c c";
  }
}

@media (min-width: 1000px) {

  .navigation {
    flex-flow: row;
    justify-content:flex-flow;  }
    article {
    display: grid;
    grid-template-columns: 70px 1fr 1fr;
    grid-gap: 10px;
    grid-template-areas:
        "a a a"
        "b b d"
        "c c .";
  }
}

