:root {
  font-size: 16px;
  font-family: "Inter", sans-serif;
  margin: 0;
  padding: 0;
  --black: #000000;
  --blue: #5484c0;
  --white: #ffffff;
}

#blogfoto {
  margin-top: 5rem;
  border-radius: 100%;
  width: 50%;
}

.margin img {
  margin: 2rem;
}

.about {
  margin: 1.5rem;
  line-height: 1.5;
}

.about--header {
  margin-bottom: 5rem;
}

.voordeel p {
  font-weight: bold;
}

.blog p {
  line-height: 1.5;
}

#blog_btn {
  width: 9rem;
}

.blog_banner {
  margin: auto;
}

.blog_banner img {
  width: 15rem;
  border-radius: 4%;
  box-shadow: 3px 3px 6px gray;
}

.fa-brands,
.fab {
  font-size: 20px;
  color: var(--blue);
}

h1 {
  font-size: 32px;
}

.center {
  text-align: center;
}

span {
  font-weight: bold;
  color: var(--blue);
}

body,
html {
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
}

a {
  text-decoration: none;
}

.btn {
  margin-top: 2rem;
  border-radius: 5px;
  padding: 0.6em 1em;
  text-decoration: none;
  display: inline-block;
  position: relative;
  border: 2px solid var(--blue);
  color: var(--blue);
  outline: none;
  font-weight: 900;
  font-size: 1.5rem;
  cursor: pointer;
}

.btn:hover {
  background-color: var(--blue);
  color: var(--white);
  transform: scale(1.01);
}

.nav__container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  box-shadow: 0px -35px 25px 15px black;
}

.nav__logo img {
  max-width: 30%;
}

.container {
  max-width: 70%;
  height: 50vh;
  box-shadow: 3px 3px 6px grey;
  background: #ffffff;
  padding: 0px 30px 30px 30px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 25px;
  margin-bottom: 55px;
  text-align: center;
  position: relative;
  border-radius: 15px;
  transition: ease-in 0.3s;
}

.blue {
  color: var(--blue);
}

.container:hover {
  box-shadow: 6px 6px 12px gray;
  transition: ease-in 0.3s;
}

.project__info p {
  font-weight: lighter;
  color: var(--black);
}

.project__info img {
  max-width: 100%;
  max-height: 35vh;
  border-radius: 15px;
}

.blog {
  display: flex;
  flex-direction: column;
  margin: auto;
  width: 55%;
}

.blog_icon {
  width: 40px;
  height: 40px;
}

.voordeel {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.flex {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  margin-top: 2rem;
}

.bottom {
  margin-top: 5rem;
}

.nav__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  transition: 0.3s;
}

.nav__buttons a {
  color: var(--blue);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.1rem;
}

.nav--mobile__toggle {
  display: none;
}

.nav__hamburger {
  position: relative;
  margin-right: 1.5rem;
  display: flex;
  width: 40px;
  height: 20px;
  z-index: 2;
}

.nav__hamburger span {
  width: 30px;
  height: 3px;
  background: #0f0f0f;
  display: flex;
  position: absolute;
  transition: 0.3s;
}

.nav__hamburger span:nth-child(1) {
  top: 20%;
  background: var(--blue);
}

.nav__hamburger span:nth-child(2) {
  top: 80%;
  background: var(--blue);
}

.nav__hamburger.is-active span {
  background-color: var(--blue);
}

.nav__hamburger.is-active span:nth-child(1) {
  transform: rotate(-45deg);
  top: 50%;
}

.nav__hamburger.is-active span:nth-child(2) {
  transform: rotate(45deg);
  top: 50%;
}

.nav__logo {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: 1.5rem;
}

#blue {
  color: var(--blue);
}

.header {
  margin-top: 5rem;
  height: 80vh;
}

.header__picture img {
  max-width: 50%;
}

.header__intro {
  text-align: center;
}

.header__picture {
  margin-top: 5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10rem;
}

.header__picture img {
  border-radius: 400px;
  max-width: 80%;
}

.picture__about {
  margin-bottom: 0;
}

.title {
  margin-top: 3rem;
}

.projects {
  margin-top: 5rem;
}

.projects {
  color: var(--blue);
}

.footer__container {
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 20px 20px 6px black;
}

.footer__container p {
  text-align: center;
  font-size: 0.8rem;
}

.footer__logo img {
  max-width: 30px;
}

.socials {
  padding: 0;
  gap: 1.5rem;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 585px) {
  .header {
    margin-bottom: 20rem;
  }
  .blog_banner img {
    width: 40rem;
  }
}

@media screen and (max-width: 879px) {
  .nav__buttons {
    background-color: var(--white);
    position: fixed;
  }
}

@media screen and (min-width: 880px) {
  #blogfoto {
    margin-top: 5rem;
    border-radius: 100%;
    width: 20%;
  }
  .flex {
    flex-direction: row;
  }
  .nav__container {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    box-shadow: 0px -35px 25px 15px black;
  }

  .nav__buttons {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
    margin-right: 5rem;
    gap: 3rem;
    text-transform: uppercase;
  }

  .nav__buttons a {
    position: inherit;
    font-size: 1.2rem;
  }

  .nav__hamburger {
    display: none;
  }

  .nav__logo {
    margin-left: 5rem;
  }

  .header {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    margin-bottom: 5rem;
  }

  .header__intro {
    margin-left: 1.5rem;
    text-align: left;
  }

  .header__picture {
    margin-right: -7rem;
  }

  .header__picture img {
    border-radius: 400px;
    max-width: 70%;
  }

  .picture__about img {
    max-width: 150%;
    margin-right: 20rem;
  }

  .about__intro {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-around;
    align-items: center;
    margin-right: 10rem;
    margin-left: 10rem;
  }

  .about {
    max-width: 50%;
  }

  .projects {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 2rem;
    margin-left: 5rem;
    margin-right: 5rem;
    margin-bottom: 5rem;
  }

  .center {
    color: var(--blue);
    text-align: left;
    margin-left: 5rem;
  }

  .container {
    margin: 0;
    min-width: 90%;
  }

  #blue {
    color: var(--blue);
  }

  .footer__container {
    padding: 0 5rem 0 5rem;
    padding-top: 0;
    flex-direction: row;
    height: 80px;
    box-shadow: 0px 35px 25px 15px black;
  }

  .socials {
    flex-direction: row;
  }

  .footer__logo img {
    width: 40%;
    max-width: 40%;
  }
}
