.head {
    width: 100%;
    background-color: #85bbb0;
    background-image: url('/static/header.png');
    background-size: cover;
    margin: 0px;
}

.foot {
    width: 100%;
    background-color: #1e6a6d;
    background-image: url('/static/Zeebodem.png');
    background-size: cover;
    margin: 0px;
    height: 50px;
}

.container-fluid {
    padding-left: 0px !important;
    padding-right: 0px !important;
}

#logo {
    height: auto;
    width: 15%;
    margin: 30px;
    margin-bottom: 150px;
}

body {
    background-color: #1e6a6d;
}

.cruise_container {
    position: relative;
    width: 100%;
    height: 600px;
}

.cruise {
    background-image: url('/static/Kwal.png');
    background-size: contain;
    background-repeat: no-repeat;
    left: 0;
    width: 300px;
    height: 600px;
    padding-left: 60px;
    padding-right: 60px;    
    padding-top: 40px;
    text-align: center;
    position: absolute;
}

section {
    margin-left: 10%;
    margin-right: 10%;    
}

#treasures {
    position: absolute
    top: 200px;
    right: 30%;
}

#treasures .badge {
    position: absolute;
    top: 60px;
    right: 0px;
}

.cruise {
    transform-origin: 50% 0%;
    animation: xrotate 10s linear infinite;
}

@keyframes xrotate {
    0% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    50% { transform: rotate(0deg); }
    75% { transform: rotate(-3deg); }
    100% { transform: rotate(0deg); }
}
