body {
    font-family: 'Raleway', sans-serif;
    background: #f4f1f1; /* Couleur douce rappelant les teintes des crevettes */
    color: #342f2f;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* En-tête */
header {
    background: linear-gradient(135deg, #f9a8b2, #ff6f61);
    color: white;
    padding: 50px 0;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

header h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    text-shadow: 0 0 10px #ff6f61, 0 0 20px #ff6f61;
}

/* Sections */
main {
    padding: 20px 10%;
    background-color: rgba(255, 255, 255, 0.1); /* Fond sombre avec légère opacité */
    border-radius: 15px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
    margin-top: 20px;
}

/* Titres de sections */
h3 {
    font-family: 'Orbitron', sans-serif;
    color: #ff6f61;
    margin-bottom: 15px;
    font-size: 2rem;
}

/* Paragraphe */
p {
    margin: 20px 0;
    color: #c6c6c6;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Image */
img {
    display: block;
    width: 100%;
    max-width: 800px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
}

img:hover {
    transform: scale(1.05);
}

/* Footer */
footer {
    text-align: center;
    background: #342f2f;
    color: white;
    padding: 15px;
    margin-top: 30px;
    font-size: 0.9rem;
}

/* Responsivité */
@media (max-width: 768px) {
    main {
        padding: 20px 5%;
    }

    header h1 {
        font-size: 2.2rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}
