html,
body {
    margin: 0;
    padding: 0;
    font-family: 'Orbitron', sans-serif;
    color: white;
}

.menu-btn {
    color: rgb(45, 40, 40);
    font-size: 20px;
    font-family: 'Orbitron', sans-serif;
    margin-left: 10px;
}

.navbar {
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    width: 99, 999%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    animation: colorShift 10s infinite;
    z-index: 1;
    border: 2px solid #000000;
}


.logo img {
    margin-right: 30px;
    height: 100px;
    width: auto;
}

.Titelshop {
    color: white;
    font-size: 50px;
    text-align: center;
    font-family: 'Orbitron', sans-serif;
    animation: wave 5s infinite;
}

@keyframes colorShift {
    0% {
        background-color: #8d3f8c
    }

    25% {
        background-color: #3b7986
    }

    50% {
        background-color: #464688
    }

    75% {
        background-color: #69428f
    }

    100% {
        background-color: #8d3f8c
    }
}

@keyframes wave {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

.side-menu {
    height: 100%;
    width: 0;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #111;
    overflow-x: hidden;
    transition: 0.5s;
    padding-top: 60px;
}

.side-menu a {
    padding: 10px 15px;
    text-decoration: none;
    font-size: 25px;
    color: #818181;
    display: block;
    transition: 0.3s;
}

.side-menu a:hover {
    color: #3a3434;
}

.side-menu .close-btn {
    position: absolute;
    top: 10px;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
}

.side-menu.open {
    width: 250px;
}

.container {
    display: flex;
    height: 100vh;
    justify-content: center;
    align-items: center;
}

.side-bar {
    width: 360px;
    height: 810px;
    margin-top: 80px;
    background: linear-gradient(45deg, #ff0055, #00ffcc);
    animation: color-change 10s ease infinite;
    box-shadow: 0 0 20px 5px rgba(255, 0, 255, 0.5), 0 0 50px 10px rgba(0, 255, 255, 0.5);
}

@keyframes color-change {
    0% {
        background: linear-gradient(45deg, #ff0055, #00ffcc);
        box-shadow: 0 0 20px 5px rgba(255, 0, 255, 0.5), 0 0 50px 10px rgba(0, 255, 255, 0.5);
    }

    50% {
        background: linear-gradient(45deg, #00ffcc, #ff00f2);
        box-shadow: 0 0 20px 5px rgba(255, 255, 0, 0.5), 0 0 50px 10px rgba(76, 0, 255, 0.5);
    }

    100% {
        background: linear-gradient(45deg, #ff00f2, #ff0055);
        box-shadow: 0 0 20px 5px rgba(255, 0, 255, 0.5), 0 0 50px 10px rgba(0, 0, 255, 0.5);
    }
}

.image-container {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(100vh - 80px);
    margin-top: 80px;
}

.image-container img {
    max-width: auto;
    max-height: 810px;
    object-fit: contain;

}

.achtergrond {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.achtergrond img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-section {
    text-align: center;
    margin-top: 80px;
}

.section-title {
    font-size: 70px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
    color: white;
    font-family: 'Orbitron', sans-serif;
}

.title-bar {
    display: block;
    width: 100%;
    height: 5px;
    background-color: #000000;
    margin: 0 auto 10px auto;
}

.producten {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 50px 0;
    gap: 50px;
}

.producten div:last-child {
    margin-right: -30px;
}

.producten div {
    text-align: center;
}

.producten img {
    height: 200px;
}



footer {
    background-color: #1a1a3d;
    padding: 20px;
    text-align: center;
    position: relative;
}