body {
	background-color: #ffffff;
	font-family:'Noto Sans Tc', sans-serif;
	color:#402411;
	font-size:16px;
    display: flex;
    justify-content: center;
}

main {
	width: 100%;
    max-width: 600px;
    padding: 20px;
}

@media (max-width: 900px) {
    main {
        padding: 10px; /* minder padding aan de zijkanten */
    }

    .logo {
        width: 80%; /* Logo aanpassen aan de breedte van het scherm */
    }

    .whatsapp, .signal {
        width: 25px; /* Verander de grootte van de iconen */
    }

    h2 {
        font-size: 18px; /* Verklein de koppen voor mobiel */
    }
}

h1 {
	color:#402411;
	font-size:38px;
}

h2 {
	color:#402411;
	font-size:22px;
}

p {
	margin-bottom:3em;
}

.logo {
    width:400px;
    object-fit:contain;
}

.whatsapp {
    width:20px;
}

.signal {
    width:20px;
}

.no-underline {
    text-decoration: none;
}

.popup-trigger {
    cursor: pointer;
}

/* Stijl voor de pop-up */
.popup {
	display: none;
	position: fixed;
	z-index: 1000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.8);
	justify-content: center;
	align-items: center;
}

/* Stijl voor de grote afbeelding */
.popup img {
	max-width: 90%;
	max-height: 90%;
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Sluitknop */
.close {
	position: absolute;
	top: 20px;
	right: 30px;
	font-size: 30px;
	color: white;
	cursor: pointer;
}

