* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f0f8ff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 80%;
    margin: 0 auto;
}

header {
    background-color: #005f99;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header h1 {
    font-size: 2.5em;
}

header h2 {
    font-size: 1.5em;
}

.about, .gallery {
    padding: 30px 0;
    text-align: center;
}

.about p {
    margin-top: 10px;
    font-size: 1.2em;
	text-align: justify;
}

.gallery .images {
    display: flex;
    justify-content: space-around;
    margin-top: 20px;
}

.gallery img {
    width: 100%;
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

footer {
    background-color: #005f99;
    color: white;
    padding: 10px 0;
    text-align: center;
}

footer p {
    font-size: 0.9em;
}

/* Responsiveness */
@media (max-width: 768px) {
    .gallery .images {
        flex-direction: column;
        align-items: center;
    }

    .gallery img {
        margin-bottom: 15px;
    }
}

.thumbnail {
}

/* Modális ablak háttér */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    justify-content: center;
    align-items: center;
}

.modal-content {
    display: block;
    margin: auto;
    max-width: 80%;
    max-height: 80%;
    border: 2px solid #fff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    animation: zoomIn 0.3s;
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
    }
    to {
        transform: scale(1);
    }
}

/* Bezáró gomb */
.close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    color: white;
    cursor: pointer;
}