

.nav{

    background-color: pink;
    padding: 20px;
}


.content{
    background-color:khaki;
    height: 100px;
    padding: 5px;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}


body {
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
}


header {
    background-color: #4CAF50;
    color: white;
    padding: 20px 0;
    text-align: center;
}

header nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

header nav ul li {
    margin: 0 15px;
}

header nav ul li a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

header nav ul li a:hover {
    text-decoration: underline;
}

/* الأقسام */
section {
    padding: 40px 20px;
    text-align: center;
}

/* البطاقات */
.cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
}
.card {
    background-color: white;
    padding: 20px;
    width: 250px;
    border-radius: 15px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: all 0.3s ease-in-out;
    cursor: pointer;
}

.card:hover {
    transform: scale(1.05) rotate(-1deg);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}


/* الفوتر */
footer {
    background-color: #333;
    color: white;
    padding: 15px 0;
    text-align: center;
}
h1{
    color: rgb(255, 255, 255);
}
p{
    color : red ;
}
