* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Silkscreen', cursive;
}

body {
    background: linear-gradient(to bottom right, #ff7eb9, #ff65a3, #ffc75f);
    color: #2b2b2b;
    font-size: 15px;
}

header {
    background-color: #ff4f81;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 6px solid #ffc75f;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    background-color: #ff65a3;
    border: 4px solid #ffc75f;
    transition: 0.3s ease;
    display: block;
}

nav ul li a:hover {
    background-color: #ffc75f;
    color: #2b2b2b;
}

.conteneur-principal {
    padding: 40px;
    border: 8px solid #ffc75f;
    margin: 30px;
    background-color: #ffe5ec;
}

.accueil-description {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}

.description-pixel,
.login-panel {
    flex: 1;
    padding: 30px;
    background-color: #ff8fab;
    border: 8px solid #ff65a3;
    box-shadow: 6px 6px 0 #ff4f81;
}

.description-pixel h2,
.login-panel h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 1px 1px 0 #ff4f81;
}

.description-pixel p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
}

.promo-image {
    max-width: 100%;
    display: block;
    margin: auto;
    image-rendering: pixelated;
}

.login-panel label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-size: 14px;
    color: #fff;
}

.login-panel input {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 2px solid #ffc75f;
    background-color: #fff;
    margin-bottom: 10px;
}

.login-button {
    margin-top: 15px;
    padding: 14px;
    width: 100%;
    font-size: 1.1rem;
    background-color: #ff4f81;
    border: 4px solid #ffc75f;
    color: white;
    cursor: pointer;
}

.login-button:hover {
    background-color: #ffc75f;
    color: #2b2b2b;
}

.forgot-password {
    display: block;
    font-size: 13px;
    color: #fff;
    text-align: right;
    margin-top: 5px;
    text-decoration: underline;
}

.register-link {
    margin-top: 20px;
    font-size: 14px;
    color: #fff;
}

.register-link a {
    color: #fff;
    text-decoration: underline;
}

footer {
    background-color: #ff4f81;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    border-top: 6px solid #ffc75f;
    margin-top: 30px;
}

.titre-news {
    font-size: 22px;
    color: #ff4f81;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 2px 2px 0 #ffc75f;
}

.news-liste {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-liste {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.news-item {
    display: block;
    background-color: #ff8fab;
    border: 6px solid #ff65a3;
    box-shadow: 6px 6px 0 #ff4f81;
    padding: 25px;
    color: white;
    text-decoration: none;
    transition: transform 0.2s ease;
}

.news-item:hover {
    transform: scale(1.02);
    background-color: #ff65a3;
}

.news-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    text-shadow: 1px 1px 0 #ff4f81;
}

.news-item p {
    font-size: 15px;
    margin-bottom: 8px;
}

.news-date {
    font-size: 12px;
    color: #ffe5ec;
}




.news-date {
    font-size: 12px;
    color: #ffe5ec;
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Silkscreen', cursive;
}

body {
    background: linear-gradient(to bottom right, #ff7eb9, #ff65a3, #ffc75f);
    color: #2b2b2b;
    font-size: 15px;
}

header {
    background-color: #ff4f81;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 6px solid #ffc75f;
}

.logo img {
    height: 50px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    font-size: 1.1rem;
    background-color: #ff65a3;
    border: 4px solid #ffc75f;
    transition: 0.3s ease;
    display: block;
}

nav ul li a:hover {
    background-color: #ffc75f;
    color: #2b2b2b;
}

.staff-page {
    padding: 40px;
    margin: 30px;
}

.staff-category {
    margin-bottom: 40px;
}

.staff-category h2 {
    font-size: 24px;
    color: #ff4f81;
    text-align: center;
    margin-bottom: 20px;
}

.staff-members {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.staff-card {
    background-color: #ff8fab;
    border: 8px solid #ff65a3;
    box-shadow: 6px 6px 0 #ff4f81;
    width: 200px;
    height: 300px;
    padding: 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: 0.3s ease;
}

.staff-card:hover {
    background-color: #ff65a3;
    cursor: pointer;
}

.staff-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
    margin-bottom: 15px;
}

.staff-card h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 15px;
}

.rank-description {
    display: none;
}

.staff-card:hover .rank-description {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-top: 15px;
}

footer {
    background-color: #ff4f81;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 1rem;
    border-top: 6px solid #ffc75f;
    margin-top: 30px;
}



