body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.hatterkep {
    position: absolute; /* Fix háttér a teljes képernyőre */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hatterkep.png') center fixed;
    background-size: auto 100%;
    filter: blur(10px);
    z-index: -1; /* Háttér mindig a tartalom mögött lesz */
}

body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.images {
    display: flex;
    gap: 20px;
}

.image-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: rgba(0, 0, 0, 0.5); /* Fekete, 50%-os átlátszóság */
    padding: 10px 15px; /* Extra hely jobbról és balról */
    border-radius: 10px; /* Lekerekített sarkok */
    transition: border-color 0.3s ease; /* Áttűnés az animációnál */
    border: 4px solid transparent; /* Átlátszó keret alapértelmezés */
}

/* .image-item:hover {
    border-color: orange; /* Narancssárga keret hover esetén
} */

.images i {
    font-size: 50px;
    transition: all 0.3s ease;
    color: #d39700;
    padding: 10px; /* Extra hely az ikon körül */
    position: relative; /* Az ikon relatív pozicionálása */
}

.images i:hover {
    box-shadow: 0 0 0 4px #d39700; /* Narancssárga keret az ikon körül hover esetén */
}

.caption {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5); /* Fekete, 50%-os átlátszóság */
    padding: 5px 10px; /* Jobbról és balról 5px extra szélesség */
    border-radius: 5px; /* Lekerekített sarkok */
}
.caption2 {
    margin-top: 10px;
    font-size: 1.2rem;
    color: white;
    text-align: center;
    background-color: rgba(122, 122, 122, 0.5); /* Fekete, 50%-os átlátszóság */
    color: #d39700;
    padding: 5px 10px; /* Jobbról és balról 5px extra szélesség */
    border-radius: 5px; /* Lekerekített sarkok */
}



/*@keyframes rgb-border {
    0% { border-color: red; }
    33% { border-color: green; }
    66% { border-color: blue; }
    100% { border-color: red; }
}*/

a {
    text-decoration: none;
}