@import url(színek.css);

.content h1 {
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--szín13);
    background: linear-gradient(to right, var(--szín8), #f9f6d2);
    padding: 0.75rem 1.125rem;
    border-left: 0.5rem solid var(--szín7);
    border-radius: 0.375rem;
    box-shadow: 0 0.25rem 0.375rem rgba(0,0,0,0.1);
    transition: background 0.3s ease;
}

.content h1:hover {
    background: linear-gradient(to right, #f9f6d2, var(--szín8));
}

.content ul {
    padding-left: 1.5rem;
    margin-top: 0.625rem;
    margin-bottom: 1.875rem;
}

.content ul li {
    position: relative;
    font-size: 1.0625rem;
    line-height: 1.7;
    padding-left: 1.5rem;
    margin-bottom: 0.9375rem;
    color: var(--szín3);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.content ul li::marker {
    color: var(--szín7);
}

/* Fade-in animation */
@keyframes fadeInUp {
    from {
        transform: translateY(0.625rem);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.content ul li:nth-child(1) { animation-delay: 0.1s; }
.content ul li:nth-child(2) { animation-delay: 0.2s; }
.content ul li:nth-child(3) { animation-delay: 0.3s; }
.content ul li:nth-child(4) { animation-delay: 0.4s; }
.content ul li:nth-child(5) { animation-delay: 0.5s; }
.content ul li:nth-child(6) { animation-delay: 0.6s; }
