@charset "UTF-8";
/* CSS Document */
body {
  margin: 0;
  font-family: "Montserrat Regular";
}
header, main, aside, article, footer {
  display: block;
  box-sizing: border-box;
  padding: 20px;
}
.orange {
  color: rgba(154, 79, 23, 0.90);
}
.darkgreen {
  color: darkslategray;
}
#container {
  max-width: 960px;
  margin: auto;
  margin-top: 40px;
}
header {
  max-width: 960px;
  height: 300px;
  background-color: antiquewhite;
  background-image: url("../Afbeeldingen/header_potosi-mine.jpg");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
}
#logo {
  width: 400px;
  height: 300px;
  position: absolute;
  top: 10px;
  left: 50px;
  z-index: 2;
}
nav {
  max-width: 960px;
  min-height: 50px;
  background-color: black;
}
nav #myLinks {
  list-style-type: none;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 20px;
  padding-bottom: 20px;
}
nav #myLinks li {
  margin-top: 0px;
  margin-left: 40px;
}
nav #myLinks li a {
  text-decoration: none;
  padding: 20px;
  color: white;
  font-size: 1em;
}
nav #myLinks a {
  font-family: montserrat;
  font-style: normal;
  font-weight: 400;
  line-height: 2;
}
#myLinks a:hover {
  color: #f37709;
}
main {
  max-width: 960px;
  min-height: 400px;
  background-color: blue;
  padding: 0px;
  margin-top: 0;
}
.group:after {
  content: "";
  display: table;
  clear: both;
}
aside {
  width: 30%px;
  min-height: 400px;
  background-color: skyblue;
  float: left;
  display: none;
}
article {
  width: 100%;
  min-height: 400px;
  background-color: rgba(234, 227, 213, 1.00);
  float: left;
  padding: 50px 10px;
}
#blok {
  width: 100px;
  margin-left: 20px;
}
#blok p {
  color: white;
  background-color: rgba(154, 79, 23, 0.90);
  text-align: center;
  border-radius: 20px
}
article h3 {
  font-family: montserrat;
  margin: 50px 0;
}
article p {
  font-family: montserrat;
  font-size: 0.9rem;
  line-height: 1.8;
  font-weight: 400;
}
article ul li {
  font-family: montserrat;
  font-size: 0.9rem;
  line-height: 1.8;
}
footer {
  max-width: 960px;
  height: 200px;
  background-color: darkslategrey;
}
footer a {
  color: white;
  text-decoration: none;
}
#copyright {
  font-family: montserrat;
  font-size: 0.9rem;
  color: white;
  line-height: 1.8;
  margin-right: 10px;
  margin-top: 130px;
  float: right;
}
#steven {
  margin: 40px;
}
#Huib {
  margin-left: 40px;
}
#Maarten {
  margin-left: 40px;
}
#contact {
  width: 300px;
  font-family: montserrat;
  font-size: 0.9rem;
  color: white;
  line-height: 1.8;
  margin-left: 10px;
  margin-top: 40px;
}
#contact a {
  text-decoration: none;
  color: rgb(0, 0, 238);
}
#contact1 {
  width: 300px;
  font-family: montserrat;
  font-size: 0.9rem;
  color: white;
  line-height: 1.8;
  margin-left: 10px;
  margin-top: 40px;
}
#contact1 a {
  text-decoration: none;
  color: rgb(0, 0, 238);
}
#contact2 {
  width: 300px;
  font-family: montserrat;
  font-size: 0.9rem;
  color: white;
  line-height: 1.8;
  margin-left: 10px;
  margin-top: 40px;
}
#contact2 a {
  text-decoration: none;
  color: rgb(0, 0, 238);
}
@media screen and (max-width:884px) {
  #myLinks li {
    display: block;
  }
  nav #myLinks li {
    margin-top: 0px;
    margin-left: 0px;
  }
  #logo {
    width: 250px;
    height: 200px;
    position: absolute;
    top: 10px;
    left: 50px;
    z-index: 2;
  }
}
@media screen and (min-width:885px) {
  #myLinks li {
    display: inline-block;
  }
  #myLinks a:hover {
    color: #f37709;
    background-color: linen;
  }
  article {
    padding: 50px 100px;
  }
  #contact {
    margin-left: 50px;
  }
  #contact1 {
    margin-left: 50px;
  }
  #contact2 {
    margin-left: 50px;
  }
  #copyright {
    margin-right: 50px;
  }
}