body {    
    font-family: "Source Sans Pro", Helvetica, sans-serif;
    letter-spacing: 0.025em;
	line-height: 1.45;
    background-image: url('https://www.veryhairy.nl/img/plat-leggen-hondenhaar-behang.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-position: center center;
}

.background {
    padding-top: 10px;
    padding-bottom: 10px;
}

.mainwrapper {
    margin-right: auto; /* 1 */
    margin-left:  auto; /* 1 */
    max-width: 960px; /* 2 */
    padding-right: 10px; /* 3 */
    padding-left:  10px; /* 3 */
    padding-bottom: 20px;
    padding-top: 20px;
    background-color: hsla(30, 19%, 56%, 0.90);
    border-radius: 25px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.footer {
    text-align: center;
    background-color: #565e60;
    width: 100%;
    height: auto; 
    position: fixed;
    bottom: 0;
}

h1 {
    font-weight: bold;
    font-size: 20px;
}

h2 {
    font-weight: bold;
}

/* NAVBAR STYLING STARTS */
.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: bold;
    background-color: hsla(30, 19%, 56%, 0.90);
    margin-right: auto;
    margin-left: auto;
    padding-right: 28px;
    padding-left: 28px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;

}
    
/* NAVBAR MENU */
.menu {
    display: flex;
    gap: 1em;
    font-size: 16px;
}
    
.menu li:hover {
    color: #fff;
    outline: none;
    text-align: left;    
    transition: 0.3s ease;
}
    
.menu li {
    padding: 7px 7px;
}
    
/* DROPDOWN MENU */
.dropdown {
    position: relative; 
}
    
.dropdown-content {
    background-color: hsla(30, 19%, 56%, 0.90);
    position: absolute; /*WITH RESPECT TO PARENT*/
    display: none;
    z-index: 1;
    text-align: left;
    width: 100%;
    top: 100%;
    font-size: 12px;
    animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;
}

.dropdown-content a {
    padding-inline: none;
}
    
.dropdown-content li:hover {
    background-color: #888272;
}
    
.dropdown:hover .dropdown-content {
    display: block;
}

/* RESPONSIVE NAVBAR MENU STARTS */

/* CHECKBOX HACK */
input[type=checkbox] {
    display: none;
} 
    
/* HAMBURGER MENU */
.hamburger {
    display: none;
    font-size: 24px;
    user-select: none;
}

.mobmenu {
    display: none;
    background-color: hsla(30, 19%, 56%, 0.90);
    font-size: 18px;
    width: 100%;
    position:absolute;
	right: 0;
    left: 0;
	text-align: center;
	padding: 16px 0;
    z-index: 1;
	animation: growDown 300ms ease-in-out forwards;
    transform-origin: top center;

}
@keyframes growDown {
    0% {
        transform: scaleY(0)
    }
    80% {
        transform: scaleY(1.1)
    }
    100% {
        transform: scaleY(1)
    }
}


.mobmenu li:hover {
    display: inline-block;
    transition: 0.3s ease;
    }
.mobmenu li + li {
    margin-top: 12px;
}
.mobmenu a {
    outline: none;
}
    
/* APPLYING MEDIA QUERIES */
@media (max-width: 1066px) {
    .menu {
    display:none;
    }
    
    input[type=checkbox]:checked ~ .mobmenu {
    display: block;
    }
    
    .hamburger {
    display: block;
    }
}

/* HEADER ICON MARKUP */
.contact {
    vertical-align: middle;
}
.contact img{
    vertical-align: middle;
}

#icon{
    text-align: center;
}

/* MAIN CONTENT MARKUP */
.content-centrum {
    animation: fadeInAnimation ease 3s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
    text-align: center;

}
@keyframes fadeInAnimation {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* INDEX MARKUP */
.index-container {
    display: flex;
}

.index-imgleft {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    width: 50%;
    min-height: 350px;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.index-boxright {
    padding: 5% 0px 5% 0px;
    width: 50%;
    text-align: left;
    background-color: #888272;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.index-imgright {
    background-repeat: no-repeat;
    background-size:cover;
    background-position: center center;
    width: 50%;
    min-height: 350px;
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.index-boxleft {
    padding: 5% 0px 5% 0px;
    width: 50%;
    text-align: left;
    background-color: #888272;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 54px 55px, rgba(0, 0, 0, 0.12) 0px -12px 30px, rgba(0, 0, 0, 0.12) 0px 4px 6px, rgba(0, 0, 0, 0.17) 0px 12px 13px, rgba(0, 0, 0, 0.09) 0px -3px 5px;
}

.inside-text {
    padding: 0px 5px 0px 5px;
}

/* IMAGE MARKUP */
.plaatje_rechts {
    vertical-align:top;
    float:right;
    padding-inline:20px;
    padding-bottom:10px; 
}

.plaatje_rechts img {
    border-radius: 8px;
}

.plaatje_links {
    vertical-align:top;
    float:left;
    padding-inline:20px;
    padding-bottom:10px;     
}

.plaatje_links img {
    border-radius: 8px;
}

.plaatje_centrum {
    vertical-align:top;
    float:center;
    padding-inline:20px;
    padding-bottom:10px;     
}

.plaatje_centrum img {
    border-radius: 8px;
}

.plaatje_banner {
    vertical-align:top;
    float:center;
    padding-inline:20px;
    padding-bottom:10px;     
}

.plaatje_banner img {

}

/* GALERIJ MARKUP */
#fotos{
    margin-top: 30px;
}

#fotos img{
    display: block;
    width: 100%;
    margin-top: 9px;
}

/* 
.scroller{
    height: 680px;
    overflow: auto;
}
*/