/* Styles de base */

@import url('https://fonts.googleapis.com/css2?family=Carter+One&display=swap');

body {
    font-family: Carter One, sans-serif;
    background-color: #0c0c0c;
    color: #e6e6e6;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 400px;
    width: 100%;
    background-color: #343336;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.profile-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

/* Styles des liens */
.links {
    display: flex;
    flex-direction: column;
}

.link {
    text-decoration: none;
    color: #e6e6e6;
    background-color: #0c0c0c;
    padding: 10px;
    margin: 10px 0;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.link:hover {
    background-color: #58575c;
}

/* Responsive design */
@media (max-width: 600px) {
    .container {
        margin: 20px;
    }
}

