/* * {
    box-sizing: border-box;
    margin: 0;
}

body {
    text-align: center;
}

header,
footer {
    width: 100%;
    background-color: #f5e1f3;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 100px;
}

header h1 {
    margin-left: 10px;
    font-family: 'Sedgwick Ave Display', cursive;
    color: grey;
}

header nav:first-of-type {
    flex: 1;
}

header nav:first-of-type a,
footer a {
    text-decoration: none;
    font-size: 20px;
    color: grey;
    transition: all 0.3s ease;
}

header a:hover,
footer a:hover {
    transform: scale(1.5);
}

.partieequipe,
.partiedecor {
    width: 80%;
    margin: 30px auto; 
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partieequipe img,
.partiedecor img {
    width: 100%;
    height: auto;
    border-radius: 10%;
    margin-top: 20px;
}

.equipe,
.decor {
    width: 100%;
    margin-top: 20px;
}

.equipe h2,
.decor h2 {
    margin-bottom: 10px;
    color: grey;
    font-weight: bold;
    border-bottom: 2px #f5e1f3 solid;
}

.equipe p,
.decor p {
    word-spacing: 5px;
    font-size: 25px;
    margin-top: 20px;
    border: 3px #f5e1f3 solid;
    box-shadow: 1px 1px 1px 1px;
    transition: all 0.3s ease;
}

.equipe p:hover,
.decor p:hover {
    transform: scale(1.05);
} */ 
* {
    box-sizing: border-box;
    margin: 0;
}

body {
    text-align: center;
}

header,
footer {
    width: 100%;
    background-color: #f5e1f3;
    height: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

header h1 {
    margin-left: 10px;
    font-family: 'Sedgwick Ave Display', cursive;
    color: grey;
}

header nav:first-of-type {
    flex: 1;
    display: flex;
    justify-content: space-around;
}

header nav:first-of-type a,
footer a {
    text-decoration: none;
    font-size: 20px;
    color: grey;
    transition: all 0.3s ease;
}

header a:hover,
footer a:hover {
    transform: scale(1.5);
}

/* Media query for mobile devices */
@media only screen and (max-width: 600px) {
    header nav:first-of-type {
        display: none;
    }

    header {
        flex-direction: column;
    }

    .menu-icon {
        display: block;
        cursor: pointer;
        font-size: 24px;
    }

    .menu {
        display: none;
    }

    .menu.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        position: absolute;
        top: 100px;
        left: 0;
        right: 0;
        background-color: #f5e1f3;
        z-index: 1;
    }

    .menu a {
        padding: 10px;
        font-size: 18px;
    }
}

.partieequipe,
.partiedecor {
    width: 80%;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.partieequipe img,
.partiedecor img {
    width: 100%;
    height: auto;
    border-radius: 10%;
    margin-top: 20px;
}

.equipe,
.decor {
    width: 100%;
    margin-top: 20px;
}

.equipe h2,
.decor h2 {
    margin-bottom: 10px;
    color: grey;
    font-weight: bold;
    border-bottom: 2px #f5e1f3 solid;
}

.equipe p,
.decor p {
    word-spacing: 5px;
    font-size: 25px;
    margin-top: 20px;
    border: 3px #f5e1f3 solid;
    box-shadow: 1px 1px 1px 1px;
    transition: all 0.3s ease;
}

.equipe p:hover,
.decor p:hover {
    transform: scale(1.05);
}

