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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.container {
    max-width: 400px;
    width: 100%;
    text-align: center;
}

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

h1 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
}

.handle {
    color: #666;
    font-size: 16px;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.link-button {
    display: block;
    padding: 12px 20px;
    background-color: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 8px;
    font-size: 16px;
    border: 1px solid #ddd;
    transition: all 0.2s ease;
}

.link-button:hover {
    background-color: #f0f0f0;
    border-color: #ccc;
}
