/* styles.css */

/* Styles communs pour tous les écrans */

body {
    font-family: 'Arial', sans-serif;
}

header {
    background-color: #13181d;
    color: white;
    text-align: center;
    padding: 20px 0;
}

header h1 {
    margin: 0;
    text-transform: uppercase;
    color: #d33bfd;
}

header .right {
    display: flex;
    justify-content: center;
    gap: 20px;
}

header .right p {
    margin: 0;
    color: #ccc;
    cursor: pointer;
}

header .right button {
    padding: 10px 20px;
    font-size: 14px;
    background-color: transparent;
    border: 1px solid #d33bfd;
    border-radius: 5px;
    color: #d33bfd;
    cursor: pointer;
    transition: color 0.5s, background-color 0.5s;
}

header .right button:hover {
    color: white;
    background-color: #d33bfd;
}

.container2 {
    padding: 20px;
    text-align: center;
}

.content {
    margin-top: 20px;
}

/* Media queries pour écrans plus petits */

@media (max-width: 768px) {
    header h1 {
        font-size: 24px;
    }

    header .right {
        flex-direction: column;
        gap: 10px;
    }

    header .right button {
        font-size: 12px;
    }

    .content {
        margin-top: 10px;
    }
}
