body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: linear-gradient(135deg, #ff0077, #2f00ff);
    color: white;
}

/* Header */
header {
    text-align: center;
    padding: 40px 20px;
}

header h1{
    font-size: 60px;
    
}
header p{
    font-size: 30px;
}

/* Galerie */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    padding: 30px;
}
.gallery p {
    color: blue;
}
.gallery h3 {
    color: blue;
}
.card {
    background-color: aliceblue;
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    transition: transform 0.4s ease;
}

.card:hover {
    transform: translateY(-10px);
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-radius: 12px;
}

.card h3 {
    margin-top: 15px;
    border-bottom: 2px solid rgb(25, 0, 255);
    display: inline-block;
    padding-bottom: 5px;
}

/* Tableau */
.table-section {
    padding: 30px;
    max-width: 1000px;
    margin: auto;
    background-color: rgba(255, 255, 255, 0.425);
    opacity: 1;
    border-radius: 10px;
    padding: 20px;
    sha
}

table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    overflow: hidden;
}

th, td {
    padding: 12px;
    text-align: center;
    color: #000000;
}

th {
    background: rgba(0, 0, 0, 0.658);
}

tr:nth-child(even) {
    background: rgb(255, 255, 255);
}

/* Footer */
footer {
    text-align: center;
    padding: 25px;
    background: rgb(255, 255, 255);
    margin-top: 40px;
    color: #2f00ff;
    font-size: 15px;
}