/* 
    Crée par MyHomeSystem, Seiroth/Benoit
     ____  __   __  ____
    |  __||  | |  ||  __|
    | |__ |  |_|  || |__
    |__  ||__   __||__  |
     __| |   | |    __| |
    |____|   |_|   |____|
    Copyright © My Home System informatique © 2024 -SystemCorp – Tous droits reservés.
    Marques commerciales deposées par © My Home System informatique, par le biais de son propriétaire Ritzzo Benoit.
*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}





.donation-info {
    margin-top: 30px;
}

.donation-info h2 {
    text-align: center;
    font-size: 2em;
    margin-bottom: 20px;
}

.gift-cards {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.gift-card {
    width: 250px;
    border: 1px solid #ccc;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.gift-card:hover {
    transform: translateY(-5px);
}

.gift-card a {
    display: block;
    text-decoration: none;
    color: inherit;
}

.gift-card img {
    width: 100%;
    height: auto;
}

.gift-details {
    padding: 15px;
}

.donation-options {
    margin-top: 30px;
}

.donation-options h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
}

.donation-options p {
    line-height: 1.8;
    margin-bottom: 15px;
}

.donation-options ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 15px;
}

.donation-options address {
    margin-top: 10px;
    font-style: normal;
}

footer {
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    text-align: center;
    margin-top: 30px;
}

footer .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

footer p {
    margin: 5px 0;
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
}
