body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    text-align: center;
}

h1 {
    font-size: 2.5em;
    margin-top: 50px;
}

p {
    font-size: 1.2em;
    margin: 20px 10%;
    line-height: 1.6;
}

.image-gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 20px 0;
}

.image-gallery img {
    width: 250px;
    height: 350px;
    margin: 15px;
    border-radius: 10px;
    object-fit: cover;
}

.cta-button {
    background-color: #F285B1;
    color: white;
    padding: 10px 20px;
    font-size: 1.0em;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-bottom: 20px;
}

.cta-button:hover {
    background-color: #ff9fc9;
	
}

a {
    color: #F285B1;
    text-decoration: none;
    transition: color 0.3s ease; /* Zachte overgang voor kleur */
}

a:visited {
    color: #F285B1; /* Dezelfde kleur als standaard voor bezochte links */
}

a:hover {
    color: #ff9fc9; /* Lichtere kleur wanneer je eroverheen gaat */
}

a:active {
    color: #ff9fc9; /* Lichtere kleur wanneer de link wordt aangeklikt */
}

        .refresh-button {
            background-color: #ff9fc9;
            color: white;
            padding: 10px 20px;
            font-size: 1.0em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
			margin-bottom: 40px; /* Voeg extra ruimte onder de knop toe */
        }

        .refresh-button:hover {
            background-color: #F285B1;
        }

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }

        .image-gallery {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
        }

        .image-gallery img {
            width: 250px;
            height: 350px;
            margin: 15px;
            border-radius: 10px;
            object-fit: cover;
        }

    .cta-button {
        font-size: 1.2em;
        padding: 10px 10px;
    }
}

        .button-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px;
        }

        .custom-button {
            background-color: #F285B1;
            color: white;
            border: none;
            border-radius: 5px;
            padding: 10px 15px;
            font-size: 0.9em;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .custom-button:hover {
            background-color: #ff9fc9;
        }
/* Ensures the image scales down based on the screen size */
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 660px; /* Ensures the image doesn't exceed the container size */
    display: inline-block; /* Aligns the image within the center-aligned container */
}

/* Optional: Center the image within a container */
.image-container {
    max-width: 100%; /* You can set a specific max-width if needed, like 1200px */
    margin: 0 auto;  /* Centers the image container horizontally */
    text-align: center; /* Centers the image inside the container */
}

/* Basic styling for the container */
.container {
    display: flex;
    flex-wrap: wrap; /* Allows the columns to wrap to the next line on smaller screens */
    justify-content: space-between; /* Adds space between the columns */
    gap: 10px; /* Adds gap between the columns */
    padding: 0 20px; /* Adds padding on the left and right sides to prevent columns from being too close to the screen edge */
}

/* Style for each column */
.column {
    flex: 1 1 46%; /* Each column takes 48% width of the container */
    box-sizing: border-box; /* Ensures padding and border are included in the width */
    padding: 20px;
    border: 1px solid #ccc; /* Optional: Adds a border to each column */
}

/* Stack columns vertically when screen is smaller */
@media screen and (max-width: 768px) {
    .column {
        flex: 1 1 100%; /* On smaller screens, columns take 100% width */
    }
}

