
@import url('https://fonts.googleapis.com/css?family=Work+Sans:300,600');

:root {
  --headerbackground: rgba(206, 124, 0, 1);
  --headerbackgrounddark: rgba(198, 118, 0, 1);
  --almostwhite: rgba(248, 248, 248, 1); 
  --somesortofgrey: rgba(230, 230, 230, 1);
  --footerbackground: rgba(148, 148, 148, 1); 
  --almostblack: rgba(32, 32, 32, 1);
}

body {
  margin: 0;
  background: var(--almostblack);
  font-family: 'Work Sans', sans-serif;
  font-weight: 400;
  color: var(--somesortofgrey);
}

body h1 {
  text-align: center; 
  margin-bottom: 50px;
}

body h2 {
  margin-top: 100px;
}

.normal-text {
  margin-left: 20%; 
  margin-right: 20%; 
}

body div section section {
  margin-top: 30px; 
  margin-bottom: 55px;
}

.link {
  color: var(--somesortofgrey)
}

.link:hover {
  color: var(--almostwhite)
}

body section footer a {
  color: var(--somesortofgrey)
}

body section footer a:hover {
  color: var(--almostwhite)
}

body footer {
  margin-top: 50px; 
  background: var(--headerbackgrounddark);
  color: var(--almostblack);
}
   
.link-without-decoration {
  text-decoration: none; 
  color: var(--somesortofgrey)
}

body div h3 {
  margin-top: 25px; 
  margin-bottom: 10px; 
}

.projecten section {
  margin-bottom: 10px;

}

.centered {
  text-align: center;
}

body img {
  width: 100%;
}

ul.competenties li {
  margin-top: 10px;
}
















/* DIT HIERONDER NIET MEER AANPASSEN, DIT IS VOOR DE NAV BAR */

 /* Navbar container */
.navbar {
  overflow: hidden;
  background-color: var(--headerbackground);
  font-family: 'Work Sans', sans-serif;
}

/* Links inside the navbar */
.navbar a {
  float: right;
  font-size: 20px;
  color: var(--almostwhite);
  text-align: center;
  padding: 30px 24px;
  text-decoration: none;
}

/* The dropdown container */
.dropdown {
  float: right;
  overflow: hidden;
}

/* Dropdown button */
.dropdown .dropbtn {
  font-size: 20px;
  border: none;
  outline: none;
  color: var(--almostwhite);
  padding: 30px 24px;
  background-color: inherit;
  font-family: inherit; /* Important for vertical align on mobile phones */
  margin: 0; /* Important for vertical align on mobile phones */
}

/* Add a red background color to navbar links on hover */
.navbar a:hover, .dropdown:hover .dropbtn {
  background-color: var(--headerbackgrounddark);
}

/* Dropdown content (hidden by default) */
.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  z-index: 1;
  margin-top: 83.5px;
}

/* Links inside the dropdown */
.dropdown-content a {
  float: none;
  color: var(--almostblack);
  padding: 12px 24px;
  text-decoration: none;
  display: block;
  text-align: left;
}

/* Add a grey background color to dropdown links on hover */
.dropdown-content a:hover {
  background-color: var(--somesortofgrey);
  color: var(--almostblack)
}

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
  display: block;
} 