h1{
    font-variant: small-caps;
    text-align: center; 
    font-size: 60px; 
    font-weight: bold; 
    font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    opacity: 0;
    animation: fadeInText 0.8s ease forwards;
    animation-delay: 0s;
}

@keyframes fadeInText {
    0% {
        opacity: 0; /* Kezdettől láthatatlan */
        color: rgb(230, 230, 230); /* Kezdő szín */
    }
    100% {
        opacity: 1; /* Végére látható */
        color: black; /* Végső szín */
    }
}

h1 .large{
    text-transform: uppercase;
}
html, body{
    margin: 0;
    padding: 0;
    height: 100%;
    background-color: rgb(230,230,230);
}
p{
    text-align: center;
    margin: 100px;
}
.kep_kozep{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 1000px;
    height: auto;
}
.content{
    min-height: calc(100vh - 40px);
    padding: 20px;
}
footer {
    text-align: center;
    font-family: 'Gill Sans', 'Gill Sans MT', 'Trebuchet MS', sans-serif;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
    position: absolute;
    bottom: 0;
    width: 100%;
}

/* Kezdetben az összes link (a tag) láthatatlan */
a {
    opacity: 0;
    transform: translateY(20px); /* Elmozdulás lefelé a kezdéskor */
    animation: fadeIn 1s ease forwards; /* Előtűnés animáció */
}

/* FileGator logó animációja */
a.filegator {
    animation-delay: 0.5s;
}

/* Nextcloud logó animációja késleltetve indul */
a.nextcloud {
    animation-delay: 0.5s;
}

/* Roundcube logó animációja még később indul */
a.roundcube {
    animation-delay: 1s;
}

/* Egérrel fölé vitt állapot: 15%-kal nagyobb lesz a kép */
a img {
    transform: scale(1); /* Alapméret */
    transition: transform 0.3s ease; /* Simítás a méretnöveléshez */
}

a img:hover {
    transform: scale(1.15); /* Csak a méretet növeli meg */
}

/* A megjelenés animációjának definiálása */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px); /* Elmozdulás alulról */
    }
    100% {
        opacity: 1;
        transform: translateY(0); /* Visszatér az eredeti helyére */
    }
}

.header-background {
    background: rgba(230, 230, 230); /* Kezdő háttér: világos szürke */
    padding: 20px 0;
    text-align: center;
    animation: backgroundFade 1s ease-in-out forwards; /* Animáció 3 másodpercig tart, és megőrzi az utolsó állapotot */
    border-radius: 10px;
}

@keyframes backgroundFade {
    0% {
        background: rgba(230, 230, 230, 1); /* Világosabb szürke a kezdéskor */
    }
    100% {
        background: rgba(169, 169, 169, 1); /* Animáció végén fix sötétszürke */
    }
}

.table_center {
    margin-left: auto;
    margin-right: auto;
}

td {
    text-align: center;
}