@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: 20px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

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

.profile {
    margin-bottom: 10px;
}

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

.profile h2 {
    margin: 0 0 15px 0;
    font-size: 1.5rem;
}

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

.link {
    text-decoration: none;
    color: #e6e6e6;
    background-color: #0c0c0c;
    padding: 12px;
    margin: 6px 0;
    border-radius: 5px;
    transition: background-color 0.3s, transform 0.2s;
    font-size: 1rem;
}

.link:hover {
    background-color: #58575c;
    transform: translateY(-1px);
}

.footer-text {
    margin-top: 20px;
    font-size: 0.85rem;
    color: #bbb;
}
