/* Alapstílusok */
body {
    font-family: Arial, sans-serif;
    text-align: center;
    background-color: lightblue; /* Világoskék háttér */
    padding: 20px;
}

h1 {
    font-size: 48px;
    color: #0044cc;
}

/* Gombok stílusa */
.button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #808080; /* Szürke gomb */
    color: white;
    text-decoration: none;
    font-size: 18px;
    border-radius: 10px; /* Lekerekített gomb */
    margin: 20px 0;
    transition: background-color 0.3s ease-in-out;
}

.button:hover {
    background-color: #0044cc; /* Sötét kék kurzorra */
}

/* Képgaléria */
.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

/* Képek stílusa */
.gallery-container img {
    width: calc(5% - 10px); /* Egy sorban 4 kép */
    height: auto; /* Eredeti képarány megőrzése */
    object-fit: contain; /* Megakadályozza a torzulást */
    transition: transform 0.3s ease-in-out;
}

.gallery-container img:hover {
    transform: scale(1.5); /* Kurzorra csak 50%-kal növeli */
}

/* Lábléc */
footer {
    margin-top: 30px;
}
