

html {
    height:100%;
    width:100%;
}
body {
    width: 100%;
    margin:0;
}
.header {
    float: top;
    vertical-align: top;
    position: fixed;
    background-color: white;
    width: 100%;
    top: 0px;
    border-bottom-style: solid;
    border-bottom-color: #ffaa00;
}
@media screen and (max-width: 1200px) {
    .header {
        position:absolute;
    }
}
@media screen and (max-width: 800px) {
    .header {
        position:absolute;
        height:200px;
        display: flex;
        justify-content: center;
        align-items: center;
    }
}
#logo {
    padding-top:20px;
    line-height: 0.05;
}
header {
    vertical-align:top;
    float:left;
    margin-left: 20%;
    text-align: center;
}
@media screen and (max-width: 1200px) {
    header {
        margin-left: 10%;
    }
}
@media screen and (max-width: 800px) {
    header {
        margin-left: 0px;
        top:0px;
        position:absolute;
    }
}
nav {
    border:5px rgba(79,79,79,0.75) solid;
    padding-bottom: 15px;
    padding-top: 16px;
    width:fit-content;
    float:right;
    margin-top: 25px;
    margin-right: 20%;
}
@media screen and (max-width: 1200px) {
    nav {
        margin-right: 10%;
    }
}
@media screen and (max-width: 800px) {
    nav {
        top:100px;
        margin-top:0px;
        margin-right: 0px;
        position:absolute;
    }
}
.main {
    margin-top: 740px;
    width: 75%;   
    align-self: center;
}
@media screen and (max-width: 1200px) {
    .main {
        margin-top: 540px;
    }
}
@media screen and (max-width: 800px) {
    .main {
        margin-top: 440px;
    }
}
.mainalt {
    margin-top: 540px;
    width: 75%;
    align-self: center;
}
.maintext {
    font-size: 40px;
    color:#4f4f4f;
    font-weight: bold;
    
}
.homeimage {
    z-index:-1;
    position:absolute;
    left:0;
    top:100px;
    width: 100%;
    height: 600px;
    border-radius: 5px;
    background-image: url("../images/wpl.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items:center;
}
@media screen and (max-width: 1200px) {
    .homeimage {
        height: 400px;
    }
}
@media screen and (max-width: 800px) {
    .homeimage {
        height: 200px;
        top:200px;
    }
}
.mainimage {
    top:100px;
    z-index:-1;
    position:absolute;
    left:0;
    width: 100%;
    height: 400px;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: bottom;
    display:flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .mainimage {
        height: 300px;
    }
}
@media screen and (max-width: 800px) {
    .mainimage {
        height: 200px;
        top:200px;
    }
}
.mainimage2 {
    top:100px;
    z-index:-1;
    position:absolute;
    left:0;
    width: 100%;
    height: 600px;
    border-radius: 5px;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-y: middle;
    display:flex;
    justify-content: center;
    align-items: center;
}
@media screen and (max-width: 1200px) {
    .mainimage2 {
        height: 400px;
    }
}
@media screen and (max-width: 800px) {
    .mainimage2 {
        height: 200px;
        top:200px;
    }
}
#mainparkimage {
    background-image: url("../images/Poorthuys.png");
}
#pw-bus {
    background-image: url("../images/pw-bus.png");
}
.imagetext {
    background-color: rgba(79,79,79,0.75);
    font-size: 80px;
    color:white;
    padding:40px;
    border-radius: 50px;

}
@media screen and (max-width: 1200px) {
    .imagetext {
        font-size: 60px;
        padding:30px;
    }
}
@media screen and (max-width: 800px) {
    .imagetext {
        font-size: 40px;
        padding:20px;
    }
}
@media screen and (max-width: 600px) {
    .imagetext {
        font-size: 30px;
        padding:15px;
        white-space: nowrap;
    }
}
.btn {
    background-color: white;
    color: black;
    padding: 16px;
    font-size: 16px;
    border: none;
    text-decoration: none;
  }
.btn:hover {
    background-color: #ffaa00;
}
  
  /* The container <div> - needed to position the dropdown content */
  .dropdown {
    position: relative;
    display: inline-block;
  }
  
  /* Dropdown Content (Hidden by Default) */
  .dropdown-content {
    display: none;
    position: absolute;
    background-color: #f1f1f1;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
  }
  
  /* Links inside the dropdown */
  .dropdown-content a {
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
  }
  
  /* Change color of dropdown links on hover */
  .dropdown-content a:hover {background-color: #ffaa00;}
  
  /* Show the dropdown menu on hover */
  .dropdown:hover .dropdown-content {display: block;}
  
  /* Change the background color of the dropdown button when the dropdown content is shown */
  .dropdown:hover .dropbtn {background-color: #ffaa00;}

.cubicalimage {
    width: 30%;
    background-size: cover;
    height:200px;
    border-radius: 10px;
    color:white;
    padding: 50px;
    margin: 10px;
    display:inline-block;
}
@media screen and (max-width: 800px) {
    .cubicalimage {
        width:75%;
        padding:0px;
    }
}
@media screen and (max-width: 600px) {
    .cubicalimage {
        height:150px;
        padding:0px;
    }
}
.cubicalimage2 {
    width: 30%;
    background-size: cover;
    height:200px;
    border-radius: 10px;
    color:white;
    padding: 50px;
    margin: 10px;
    display:inline-block;
    background-position-y:bottom;
}
@media screen and (max-width: 800px) {
    .cubicalimage2 {
        width:75%;
        padding:0px;
    }
}
@media screen and (max-width: 600px) {
    .cubicalimage2 {
        height:150px;
        padding:0px;
    }
}
.cubicalimagealt {
    width: 75%;
    background-size: cover;
    background-position: center;
    height:200px;
    border-radius: 10px;
    color:white;
    padding: 50px 50px;
    margin: 10px;
    display:inline-block;
}
.cubicaltext {
    line-height: 2.5;
    display: inline-block;
    vertical-align: middle;
    font-size:40px;
    color: white;
}
@media screen and (max-width: 600px) {
    .cubicaltext {
        font-size: 30px;
    }
}
.cubicaltextalt {
    background-color: rgba(79,79,79,0.75);
    line-height: 2.5;
    display: inline-block;
    vertical-align: middle;
    margin-top: 40px;
    font-size:40px;
    width: 50%;
    border-radius: 50px;
    color: white;
}
.cubicaltextalt2 {
    background-color: rgba(79,79,79,0.75);
    line-height: 2.5;
    display: inline-block;
    vertical-align: middle;
    margin-top: 60px;
    font-size: 30px;
    width: 50%;
    border-radius: 50px;
    color: white;
}
footer {
    position: absolute;
    margin-top:50px;
    background-color: #ffaa00;
    width: 100%;
    height:50px;
}
@media (max-width: 800px) {
    footer {
        height: 100px
    }
}
@media (max-width: 600px) {
    footer {
        height: 150px
    }
}
#copyright {
    vertical-align: center;
    float: left;
    left:60px;
    position:absolute;
}
@media (max-width: 600px) {
    #copyright {
        bottom:0px;
        left: 50%;
        transform: translate(-50%);
    }
}
@media (max-width: 800px) {
    #copyright {
        bottom:0px;
    }
}
#email {
    width:fit-content;
    left: 50%;
    transform: translate(-50%);
    position:absolute;
}
@media (max-width: 900px) and (min-width: 600px) {
    #email {
        left: auto;
        right: 60px;
        transform: translate(0%);
    }
}
@media (max-width: 800px) {
    #email {
        bottom:0px;
    }
}
@media (max-width: 600px) {
    #email {
        bottom:50px;
    }
}
.footerfloat {
    display: flex;
    justify-content: center;
    align-items: center;
    height:50px;
    float: right;
    right:50px;
    position: absolute;
}
@media (max-width: 900px) {
    .footerfloat {
        right:50%;
        transform: translate(50%);
    }
}
@media (max-width: 800px) {
    .footerfloat {
        bottom:50px;
    }
}
@media (max-width: 600px) {
    .footerfloat {
        bottom:100px;
    }
}
.footer {
    color:white;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
    padding-left: 10px;
    padding-right: 10px;
}
#dienstregelingmiddel {
    display: none;
}
#dienstregelingklein {
    display: none;
}
@media (max-width: 1200px) {
    #dienstregelinggroot {
        display: none;
    }
    #dienstregelingmiddel {
        display: block;
    }
}
@media (max-width: 800px) {
    #dienstregelinggroot {
        display: none;
    }
    #dienstregelingmiddel {
        display: none;
    }
    #dienstregelingklein {
        display: block;
    }
}
#marco_pretpark {
    background-image: url("../images/marco_pretpark.png");
}
#toon_vm {
    background-image: url("../images/toon_vm.png");
}
#larssie {
    background-image: url("../images/larssie.png");
}
#flyerpepijn {
    background-image: url("../images/flyerpepijn.png");
}
#themeparktastic {
    background-image: url("../images/themeparktastic.png");
}
#alexalex1234 {
    background-image: url("../images/alexalex1234.png");
}
#_fr33k {
    background-image: url("../images/_fr33k.png");
}
#lvt {
    background-image: url("../images/ToosBanner.png");
}
#ww {
    background-image: url("../images/Wunderwald.png");
}
#wpl {
    background-image: url("../images/wpl.png");
}