/*algemeen*/
html {
  font-family: "Source Sans 3", Arial, "Helvetica Neue", Helvetica, sans-serif;
  box-sizing: border-box;
  background-color: #151515;
}
*,
*:before,
*:after {
  box-sizing: inherit;
}
body {
  margin: 0;
}
*::selection {
  color: #e65c4f;
  background-color: #ffd869;
}
main {
  padding: 0 30px;
}
footer {
  padding: 0 50px 0 50px;
  margin: 50px 0;
}
article p {
  width: 100%;
}
figure {
  margin: 0;
}
figure img {
  border-radius: 80px;
  transition-duration: 1s;
}
figure img:hover {
  transform: rotate(2deg);
}
footer {
  width: 100%;
}

/*header*/
header {
  background-color: #cccccc;
  padding: 10px 20px 0px 20px;
  height: 100%;
  margin: 0 0 40px 0;
  box-shadow: 2px 2px 2px 1px #cccccc65;
  display: flex;
  flex-direction: column;
}
header .navigatie {
  float: none;
  margin-top: 20px;
  display: none;
}
header .navigatie ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  text-align: center;
}
header .navigatie ul li {
  width: auto;
  margin: 10px 0px;
  display: inline-block;
}
.navigatie ul li a {
  color: black;
  font-size: 25px;
  font-family: "Courier New", Courier, monospace;
}
#contactSocials {
  display: block;
  float: left;
  margin-bottom: 20px;
  width: 100%;
}
#contactSocials ul {
  display: flex;
  justify-content: start;
  padding: 0;
  align-items: center;
  height: 100%;
}
#contactSocials ul li {
  float: left;
  margin: 0 25px 0 0;
}
.socials {
  float: right;
  width: 50%;
  height: 30px;
  margin-top: 15px;
  display: none;
}
.socials ul {
  margin: 0;
  list-style-type: none;
}
.socials ul li {
  float: right;
  margin: 0 0 0 25px;
}
.socials ul li a img {
  height: 30px;
  transition-duration: 1s;
}
.socials ul li a img:hover {
  transform: rotate(360deg);
}
#hamburger {
  width: 40px;
  margin: 25px auto 10px auto;
  display: block;
}
/*tekst elementen*/
h1 {
  color: black;
  font-size: 70px;
  font-weight: 550;
  line-height: 60px;
  cursor: pointer;
  font-family: "Courier New", Courier, monospace;
  text-align: center;
  float: none;
  margin: 0;
}
h2 {
  font-size: 45px;
  width: 100%;
  line-height: 45px;
  color: white;
  margin: 0;
  font-weight: 600;
  font-family: "Courier New", Courier, monospace;
}
h3 {
  font-size: 30px;
  font-weight: 600;
  color: white;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
}
h4 {
  font-size: 25px;
  color: white;
  margin: 0;
  font-family: "Courier New", Courier, monospace;
}
p,
li,
a {
  font-size: 20px;
  line-height: 25px;
  font-weight: 300;
  color: white;
  font-family: "Source Sans 3", sans-serif;
  margin: 0;
}
footer p {
  text-align: center;
  width: 100%;
}
a {
  color: #e65c4f;
  text-decoration: none;
  transition-duration: 0.5s;
}
a:hover {
  color: #b7665f;
}
p a,
.url {
  font-weight: 600;
}
a:hover {
  text-decoration: none;
}
figcaption {
  color: white;
  margin-top: 10px;
}
span {
  color: #e65c4f;
  font-weight: 600;
}
.flex {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  gap: 20px;
}
.flex img {
  width: 50px;
}
strong {
  color: #ffd869;
  font-weight: normal;
}

@media screen and (min-width: 768px) {
  main {
    padding: 0 50px;
  }
  figure img {
    border-radius: 50px;
  }
}
@media screen and (min-width: 1024px) {
  /*algemeen*/
  main {
    padding: 20px 80px;
  }

  article {
    width: 75%;
  }
  figure {
    width: 100%;
  }
  figure img {
    width: 100%;
    max-height: max-content;
  }
}
@media screen and (min-width: 1200px) {
  #hamburger {
    display: none;
  }
  h1 {
    float: left;
    margin: 40px 0 0 0;
  }
  p,
  a {
    font-size: 22px;
    line-height: 27px;
  }
  /*header*/
  header {
    padding: 10px 80px 20px 80px;
    height: 150px;
    display: block;
  }
  header .navigatie {
    float: right;
    display: block;
  }
  header .navigatie ul {
    display: block;
  }
  header .navigatie ul li {
    margin: 0 0px 0 20px;
  }
  .socials {
    display: block;
  }

  .nonunderline:hover {
    text-decoration: none;
    border-bottom: 2px solid #e65c4f;
  }
  .underline {
    border-bottom: 2px solid #e65c4f;
  }
  .nonunderline {
    transition-duration: 0.5s;
    border-bottom: 2px solid transparent;
  }
}

/* Vergrootte foto */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: clip;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.9);
}

.content {
  margin: auto;
  display: block;
  height: calc(100vh - 200px);
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}

.content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

@keyframes zoom {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.close {
  position: absolute;
  top: 35px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}

.close:hover,
.close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}

@media only screen and (max-width: 700px) {
  .content {
    width: 100%;
  }
}
