body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: 'Roboto', sans-serif;
    background-color: #f0f0f0;
}

.container {
    display: flex;
    flex-direction: row;
    height: 100vh;
}

.location {
    flex: 1;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease-in-out;
}

.location:hover {
    transform: scale(1.05);
}

.location a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    color: white;
}

.location img {
    max-width: 60%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.5));
}

.location span {
    font-size: 2rem;
    font-weight: bold;
    text-transform: uppercase;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 10px 20px;
    border-radius: 5px;
}

.overlay {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    transition: background 0.3s ease-in-out;
}

.location:hover .overlay {
    background: rgba(0, 0, 0, 0.6);
}

#KB {
    background: url('https://t4.ftcdn.net/jpg/14/70/68/31/360_F_1470683197_l4uCwd5CcXMQD0ZyYZSB7EbYNFSPg7VV.jpg') no-repeat center center/cover;
}

#MB {
    background: url('https://media.istockphoto.com/id/1047259374/photo/programming-source-code-abstract-background.jpg?s=612x612&w=0&k=20&c=07DAFiujCb58Zgu5ZArLprHiSKew5pCGqbTnop9GclA=') no-repeat center center/cover;
}


/* Media Queries voor Telefoons */
@media (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .location {
        height: 33.33vh;
    }

    .location img {
        max-width: 40%;
    }

    .location span {
        font-size: 1.5rem;
        padding: 5px 10px;
    }
}