body {
    font-family: 'Open Sans', sans-serif;
    text-align: center;
    margin: 0;
    padding: 0;
    background: linear-gradient(to bottom, #f4a460, #ffffff); /* Verloop van zandkleur (#f4a460) naar wit (#ffffff) */
}

.logo-container {
    margin: 10px 0; /* Verklein de marge */
}

.logo-container img {
    max-width: 250px;
    height: auto;
}

.image-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 600px;
    margin: 10px auto; /* Verklein de marge */
}

.background-image {
    display: none;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1;
}

.main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 1;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}

.search-bar {
    margin: 20px auto; /* Iets meer marge om ruimte te creëren */
    max-width: 300px;
}

.search-bar input {
    width: 100%;
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.initial-text {
    font-size: 30px; /* Corps 30 */
    color: #000; /* Zwarte tekst */
    margin: 10px 0; /* Verklein de marge */
}

.image-text {
    font-size: 20px; /* Corps 20 */
    color: #008080; /* Ocean GroenBlauw */
    margin: 5px 0; /* Verklein de marge */
}

.message-container {
    margin: 10px auto; /* Verklein de marge */
    max-width: 600px;
    padding: 10px;
    font-size: 30px; /* Corps 30 */
    color: #A9A9A9; /* Blauwgrijs van kleur */
    border: 2px solid #FF6000; /* Solid #FF6000 */
    transition: transform 0.5s ease; /* Smooth transition */
}

.message-container.move-up {
    transform: translateY(-200px); /* Move up by 200px */
}

.music-list {
    margin-top: 10px; /* Verklein de marge */
}

.music-list ul {
    list-style-type: none;
    padding: 0;
}

.music-list li {
    margin: 5px 0; /* Verklein de marge */
    cursor: pointer;
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    position: absolute;
    bottom: 0;
    color: #FF6000; /* Marquee text color */
    font-size: 30px; /* Marquee text size (corps 30) */
    display: none; /* Hide initially */
}

.marquee {
    display: inline-block;
    padding-left: 100%;
    animation: marquee 10s linear infinite;
}

@keyframes marquee {
    from { transform: translateX(100%); }
    to { transform: translateX(-100%); }
}

/* Media query for mobile devices */
@media (max-width: 600px) {
    .background-image {
        top: -80px;
    }
}