.hover-dark {
    color: #000;
}
.hover-dark :hover{
    color: #000;
}

.image-container {
    transition: transform 0.3s;
    transform-style: preserve-3d;
    position: relative;
    width: 100%;
}
.image-container img {
    width: 100%;
    height: auto;
}
.text-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    background-color: rgba(0, 0, 0, 0.5); /* Optional: Add background for better readability */
    padding: 10px;
}


/* Bild muss auf die andere seite, dass mobile das bild zu erst kommt*/ 
@media only screen and (max-width: 768px) {
    #tourism-above {
        display: block;
    }
    #tourism-below {
        display: none;
    }
}

@media only screen and (min-width: 769px) {
    #tourism-above {
        display: none;
    }
    #tourism-below {
        display: block;
    }
}




 /* Extra small devices (phones, 600px and down) */
 @media only screen and (max-width: 600px) {

    #start {
        width: 100%;
        background-size: 100%;
        
    }

    .card {
        max-width: 300px;
        min-width: 150px;
    }
 }

 /* Small devices (portrait tablets and large phones, 600px and up) */
 @media only screen and (min-width: 600px) {
    
 }
 
 /* Medium devices (landscape tablets, 768px and up) */
 @media only screen and (min-width: 768px) {
    
 }
 
 /* Large devices (laptops/desktops, 992px and up) */
 @media only screen and (min-width: 992px) {
    
 }
 
 /* Extra large devices (large laptops and desktops, 1200px and up) */
 @media only screen and (min-width: 1200px) {
    .card {
        min-width: 900px; 
    }
 } 