/* Általános stílusok */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    background-color: #202020;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

/* Header stílus és animáció */
@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

header {
    background-color: #000000;
    color: #009dff;
    padding: 20px 0;
    text-align: center;
    animation: zoomIn 1s ease-out forwards;
    opacity: 0; /* Kezdeti átlátszóság */
}

a{
	color: #009dff;
	text-decoration: none;
}
a:hover{
	text-decoration: underline;
}

header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}

header p {
    font-size: 1.2rem;
}

/* Szekció animáció és stílus */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    opacity: 0; /* Kezdeti átlátszóság */
    animation: fadeInUp 1s ease-out forwards; /* Animáció hozzáadása */
    width: 80%; /* Alapértelmezett szélesség */
    max-width: 1000px; /* Maximális szélesség */
}

/* Szekciók megjelenési késleltetése */
.about-section {
    animation-delay: 0.2s;
}

.services-section {
    animation-delay: 0.4s;
}

.sharing-section {
    animation-delay: 0.6s;
}

.why-choose-section {
    animation-delay: 0.8s;
}

.technology-section {
    animation-delay: 1s;
}

/* Média lekérdezés kisebb képernyőkhöz */
@media (max-width: 768px) {
    section {
        width: 100%; /* Mobil eszközökhöz teljes szélesség */
        margin: 10px auto; /* Kisebb margó */
    }
}

/* További elemek stílusa */
section h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #0015ff;
}

section p,
ul {
    font-size: 1.1rem;
    margin-bottom: 10px;
    line-height: 1.8;
}

ul {
    list-style-type: disc;
    margin-left: 20px;
}

ul li {
    margin-bottom: 10px;
}

/* Lábjegyzet stílus */
footer {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
    padding: 10px 0;
}

footer p {
    font-size: 1rem;
}
