body {
    margin: 0 0;
    display: flex;
    justify-content: center;
    background-color: white;
    background-attachment: fixed;
}

bodydiv {
    width: 75%;
    background-color: white;
}

header {
    position: fixed;
    top: 0;
    margin: 0;
    z-index: 1;
    width: 75%;
}

.headermask {
    width: 100%;
    position: absolute;
    height: 55px;
    background-color: white;
}

.headerimg {
    height: 65px;
    background-image: url('../image/venice.jpg');
    background-size: 100%;
    opacity: 0.5;
    background-color: white;
}

.headertext {
    height: 30px;
    margin-left: 10px;
    margin-top: -40px;
    position: relative;
}

.headerright {
    position: absolute;
    right: 15px;
    top: 15px;
    z-index: 1;
}

.headerbar {
    color: #F1684E;
}

.menu {
    background-color: black;
    width: 100%;
    height: 30px;
    position: absolute;
    margin-top: 10px;
}

nav {
    background-color: black;
    right: 70px;
    position: absolute;
}

.content {
    width: 90%;
    display: flex;
    align-items: flex-start;
    align-content: stretch;
    margin-top: 100px;
}

.contentpane {
    flex: 8;
    position: relative;
}

.picture {
    width: 70%;
}

.welcome {
    position: relative;
    padding: 70px;
    color: #B9B9B9;
    font-size: 3em;
}

.komeenslangs {
    position: absolute;
    font-size: 1.5em;
    right: 20px;
    top:0;
    color: #EFEFEF;
}

.welcometext {
    background-color: #1B1B1B;
    color: white;
    position: absolute;
    bottom: 100px;
    right: 20px;
    width: 50%;
    padding: 30px;
    font-size: 1em;
}

.toPhoto {
    position: absolute;
    font-size: 1.5em;
    right: 10px;
    bottom: 10px;
}

/* The Popup content box */
.contact {
    display: none;
    position: fixed;
    z-index: 1;
    top: 20;
    right: 10;
    font-size: 15px;
    overflow: auto;
    border: 1px solid black;
    background-color: white;
    padding: 10px;
    width: 350px;
    -webkit-animation-name: slideIn;
    -webkit-animation-duration: 0.4s;
    animation-name: slideIn;
    animation-duration: 0.4s
}

/* Add Animation */
@-webkit-keyframes slideIn {
    from {top: -300px; opacity: 0} 
    to {top: 20; opacity: 1}
}

@keyframes slideIn {
    from {top: -300px; opacity: 0}
    to {top: 20; opacity: 1}
}

/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 18px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Footer text */
footer {
    font-family: "Libre Barcode 39 Text";
    font-size: 30px;
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 8px;
    background-color: #E4E4E4;
    text-align: center;
}

