* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: #131313;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    width: 100%;
    max-width: 400px;
    height: auto;
    border: 1px solid black;
    border-radius: 20px;
    background-color: #1f1f1f;
    display:flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

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

.name {
    font-size: 22px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: white;
    margin-bottom: 5px;
}

.adresse {
    font-size: 12px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: hsl(75, 94%, 57%);
    margin-bottom: 15px;
}

.description {
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    text-align: center;
    color: white;
    margin-bottom: 20px;
}

div > ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}


.button a {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: white;
    background-color: #222;
    padding: 16px 120px;
    border-radius: 12px;
    transition: background 0.3s, transform 0.2s;

}

.button a:hover {
    background-color: #333;
    transform: scale(1.05);
}

