
body{
    background-color: #fdfdf5;
background-image: url("https://transparenttextures.com/patterns/bedge-grunge.png");

user-select: none; /* Tüm modern tarayıcılar için */
    -webkit-user-select: none; /* Safari ve eski Chrome tarayıcılar için */
    -moz-user-select: none; /* Eski Firefox için */
    -ms-user-select: none; 
}
.texts{
    display: flex;
    justify-content: center;
}
.right{
    width: 90%;
    font-family: "Playfair Display", serif;
    padding: 10px;
}

.right h1, h2{
    font-weight: 400;
    border-bottom: 1px solid black;
}


header {
    text-align: center;
    margin-bottom: 40px;
}

header h1 {
    font-size: 48px;
    color: #2c3e50;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    animation: fadeIn 1s ease-out;
}

.subtitle {
    font-size: 18px;
    color: #7f8c8d;
    animation: fadeIn 1.5s ease-out;
}

.proverb-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.proverb-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100px);
    opacity: 0;
    animation: slideIn 0.8s ease-out forwards;
}

.proverb-item:nth-child(1) {
    animation-delay: 0.2s;
}

.proverb-item:nth-child(2) {
    animation-delay: 0.4s;
}

.proverb-item:nth-child(3) {
    animation-delay: 0.6s;
}

.proverb-item:nth-child(4) {
    animation-delay: 0.8s;
}.proverb-item:nth-child(5) {
    animation-delay: 1s;
}.proverb-item:nth-child(6) {
    animation-delay: 1.2s;
}.proverb-item:nth-child(7) {
    animation-delay: 1.4s
}.proverb-item:nth-child(8) {
    animation-delay: 1.6s;
}.proverb-item:nth-child(9) {
    animation-delay: 1.7s;
}.proverb-item:nth-child(10) {
    animation-delay: 1.8s;
}.proverb-item:nth-child(11) {
    animation-delay: 1.9s;
}.proverb-item:nth-child(12) {
    animation-delay: 2s;
}

.proverb-item:nth-child(13) {
    animation-delay: 2.1s;
}
.proverb-item:nth-child(14) {
    animation-delay: 2.2s;
}
.proverb-item:nth-child(15) {
    animation-delay: 2.3s;
}
.proverb-item:nth-child(16) {
    animation-delay: 2.4s;
}
.proverb-item:nth-child(17) {
    animation-delay: 2.5s;
}
.proverb-item:nth-child(18) {
    animation-delay: 2.6s;
}


.proverb-text {
    text-align: center;
}

.kurdish {
    font-size: 22px;
    font-weight: bold;
    color: #2c3e50;
    margin-bottom: 10px;
}

.turkish {
    font-size: 16px;
    color: #7f8c8d;
    font-style: italic;
}

/* Animasyonlar */
@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes slideIn {
    0% { transform: translateY(100px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}