.kincseslada {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 150px;
    height: 150px;
    background: url('background2.jpeg') no-repeat center center;
    background-size: contain;

    /* Animáció hozzáadása */
    animation: sparkle 2s infinite;
}

@keyframes sparkle {
    0% { filter: brightness(1); }
    50% { filter: brightness(1.5); }
    100% { filter: brightness(1); }
}

/* styles.css */
body {
     font-family: 'Raleway', sans-serif;
     background: url('/static/background2.jpeg') no-repeat center center fixed;
     background-size: cover;
     color: #f1f1f1;
     margin: 0;
     padding: 0;
}

header {
    background-color: rgba(0, 0, 0, 0.7);
    color: gold;
    padding: 20px;
    text-align: center;
}

header h1 {
    font-family: 'Cinzel', serif; /* A főcímhez más betűtípus */
    font-size: 36px;
}

nav ul {
    list-style: none;
    padding: 0;
}

nav ul li {
    display: inline;
    margin-right: 20px;
}

nav ul li a {
    text-decoration: none;
    color: gold;
    font-weight: bold;
}

section {
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.7);
    margin: 20px;
    border-radius: 8px;
}

h2, h3 {
    font-family: 'Cinzel', serif; /* A címekhez más betűtípus */
    color: gold;
}

h3 {
    margin-top: 15px;
}

p {
    font-family: 'Raleway', sans-serif; /* A szövegekhez más betűtípus */
    font-size: 16px;
    line-height: 1.6;
}

ul {
    margin-top: 10px;
}

ul li {
    font-size: 16px;
}

footer {
    background-color: rgba(0, 0, 0, 0.7);
    color: gold;
    text-align: center;
    padding: 10px;
    position: fixed;
    width: 100%;
    bottom: 0;
}

footer p {
    font-size: 14px;
}
