    body {
        margin: 0;
        padding: 0;
        background-image: url(IMAGES/disney2.jpg);
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }

    .bandeau {
        background-color: #387eb2;
        display: flex;
        justify-content: space-between;
        align-items: center;
        color: white;
        padding: 30px 40px;
    }

    .titre2 {
        margin-bottom: 20px;
        text-align: center;
        font-size: 50px;
        font-family: "Dancing Script", cursive;
        color: white;
    }

    .titre2 i {
        color: #d8be81;
        font-size: 40px;
    }

    .logo {
        display: flex;
        background-image: url(IMAGES/logoDisney-modified.png);
        background-size: contain;
        background-repeat: no-repeat;
        width: 100px;
        height: 100px;
    }

    .interface {
        font-size: 35px;
        font-family: "Dancing Script", cursive;
    }

    .interface ul {
        list-style: none;
        display: flex;
        margin: 0;
        padding: 0;
    }

    .interface ul li {
        margin: 0 20px;
    }

    .interface nav a {
        text-decoration: none;
        color: white;
        font-weight: 500;
        transition: color 0.3s;
        margin-right: 40px;
    }

    .interface a:hover {
        color: rgb(13, 149, 233);
    }

    .reseaux {
        gap: 20px;
        display: flex;
        font-size: 30px;
        width: 220px;
    }

    .reseaux a:hover {
        color: rgb(13, 149, 233);
    }

    .person {
        justify-content: space-around;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        width: 100%;
    }

    .perso-list {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 10px;
    }

    .perso-item {
        margin-bottom: 3%;
        width: 30%;
        border: 1px solid #387eb2;
        border-radius: 10px;
        background-color: #387eb2;
        overflow: hidden;
        text-align: center;
        padding: 10px;
        transition: transform 0.2s;
    }

    .perso-item img {
        width: 100%;
        height: 250px;
        object-fit: cover;
        border-radius: 5px;
    }

    .perso-item:hover {
        transform: scale(1.05);
    }

    .perso-title {
        font-size: 30px;
        font-family: "Dancing Script", cursive;
        color: white;
        font-weight: bold;
        margin-top: 10px;
    }

    .info-princesses {
        border: 0;
        color: rgb(0, 0, 0);
        background: rgb(67, 158, 225);
    }

    .info-vilains {
        border: 0;
        color: rgb(255, 255, 255);
        background: #845dc1;
    }

    .menuPerso {
        font-size: 28px;
        font-family: 'Dancing Script';
        background-color: #f8c1da;
        padding: 12px;
    }
    
    .form-select {
        width: 30%;
        font-size: 20px;
        font-family: 'Dancing Script';
        padding: 5px;
    }

    footer {
        text-align: center;
        padding: 15px;
        background-color: #ffabd2;
        color: #363636;
        font-size: 17px;
        border-top: 1px solid #5858589f;
    }

    .text-mention-legale {
        font-size: 25px;
    }

    .vilains {
        background-color: #845dc1;
    }

    .princesses {
        background-color: #439ee1;
    }

@media (max-width: 1200px) {
    .interface {
        font-size: 28px;
    }
    .interface nav a {
        margin-right: 20px;
    }
    .perso-item {
        width: 32%;
    }
}

@media (max-width: 992px) {
    .bandeau {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .interface ul {
        flex-direction: column;
        gap: 10px;
    }

    .reseaux {
        justify-content: center;
    }

    .perso-item {
        width: 45%;
    }

    .titre2 {
        font-size: 40px;
    }

    .form-select {
        width: 60%;
    }
}

@media (max-width: 768px) {
    .logo {
        width: 80px;
        height: 80px;
    }

    .interface {
        font-size: 24px;
    }

    .bandeau {
        padding: 20px;
    }

    .perso-item {
        width: 80%;
    }

    .titre2 {
        font-size: 32px;
    }

    .perso-title {
        font-size: 24px;
    }

    .form-select {
        width: 80%;
        font-size: 18px;
    }

    .menuPerso {
        font-size: 22px;
        text-align: center;
    }
}

@media (max-width: 576px) {

    body {
        background-size: cover;
        background-attachment: scroll;
    }

    .bandeau {
        flex-direction: column;
        padding: 15px;
        gap: 10px;
    }

    .interface nav ul {
        flex-direction: column;
        gap: 5px;
    }

    .interface nav a {
        font-size: 22px;
        margin: 0;
    }

    .reseaux {
        font-size: 24px;
        width: auto;
    }

    .menuPerso {
        font-size: 20px;
        padding: 10px;
    }

    .form-select {
        width: 90%;
        font-size: 16px;
    }

    .titre2 {
        font-size: 26px;
    }

    .perso-item {
        width: 95%;
    }

    footer {
        font-size: 15px;
    }
}


