@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Onest:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom right, #ffffff 0%, #919191 100%);
    border-radius: 5px;
}

body {
    margin: 0;
    padding: 0;
    font-family: sans-serif;
    background-color: black;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    padding: 2rem;
    font-family: "Inter", sans-serif;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.avatar {
    width: 240px;
    height: 240px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    object-fit: cover;
}

.name {
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.description {
    text-align: center;
    max-width: 400px;
    margin-bottom: 1.5rem;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 12rem;
}

.btn {
    display: block;
    text-align: center;
    padding: 0.5rem 1rem;
    background-color: white;
    color: black;
    font-weight: bold;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

.btn:hover {
    background-color: black;
    color: white;
}
