*{
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
  background-color: black;
}

.title {
  width: 90vw;
  color: white;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  text-align: center;
  
}

.title h1 {
  font-size: 10vw;
  font-weight: bold;
}

.header { 
    width: 100%;
    text-align: center;
    background-position: center;
    background-size: cover;
    position: relative;
    background-image: linear-gradient(rgba(3, 3, 19, 0.3),rgba(3, 3, 19, 0.3)), url('Photos/tree.JPG');
    min-height: 500px;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} 

.intro {
  width: 50vw;
  float: right;
  text-align: center;
}

.intro h1{
  padding: 3vw;
}

.blok {
  color: white;
  max-width: 70vw;
  margin-left: 15vw;
}

.blok h1{
  text-align: center;
  padding: 5vh;
}

.blok p {
  text-align: center;
}

.CreaTe {
  color: white;
  max-width: 70vw;
  margin-left: 15vw;
}

.CreaTe h1{
  text-align: center;
  padding: 5vh;
}

.Contact {
  color: white;
  max-width: 70vw;
  margin-left: 15vw;
}

.Contact h1{
  text-align: center;
  padding: 5vh;
}

.container {
  min-height: 50vw;
  width: 100%;
}

.container2{
  background-color: whitesmoke;
  min-height: 50vw;
  width: 100%;
}

.container3{
  background-position: center;
  background-size: cover;
  position: relative;
  min-height: 500px;
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 50vw;
  width: 100%;
}

nav{
    display: flex;
    align-items: right;
    
}

/* navigationbar */
.navigation{
    overflow: hidden;
    font-family: Arial;
    padding:0vh;
  }
  
  /* navigationbar linkjes */
  .navigation a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }

  /* navigationbar linkjes */
  .navigation a:hover{
    color: black;
    background-color: white;
  }
  
  /* Dropdown container */
  .dropdown {
    float: left;
    overflow: hidden;
  }
  
  /* Dropdown button */
  .dropdown .dropbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    margin: 0;
  }
  
  /* navigationBar linkjes change colour on hover*/
  .navigation a:hover, .dropdown:hover .dropbtn {
    background-color: white;
    color :black;
  }
  
  /* Dropdown content*/
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: white;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Dropdown links */
  .dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  
  /* dropdown links change colour on hover */
  .dropdown-content a:hover {
    background-color: #333;
    color: white;
  }
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {
    display: block;
  }

  nav .closeBtn {
    display: none;
  }

  nav .openBtn {
    display: none;
  }

@media screen and (max-width: 400px){
  .name {
    font-size: 40px;
    text-align: center;
    padding: 0px;
  }

  .header { 
    max-width: 120vh;
    height: 100%;
    background-position: center;
  }

  .navigation {
    position: absolute;
    background: black;
    height: 0px;
    width: 0px;
    top: 0;
    right: 0px;
    text-align: left;
    padding: 5px;
    z-index: 2;
    
  }

  .navigation a {
    width: 200;
  }

  nav .closeBtn :hover{
    background-color: white;
    color: black;
  }

  nav .closeBtn {
    display:inherit;
    float: right;
    background-color: black;
    color: white;
    width: 30px;
    height: 30px;
  }

  nav .openBtn {
    color: white;
    margin-left: 5vw;
    display: inherit;
  }

}

  