/* Reset một số mặc định của trình duyệt */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Định dạng container chính */
body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #f3f3f3;
    padding: 20px;
}

.container {
    max-width: 400px;
    text-align: center;
    background-color: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Định dạng phần profile */
.profile {
    margin-bottom: 20px;
}

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

.bio {
    font-size: 14px;
    color: #666;
}

/* Định dạng các nút liên kết */
.links {
    margin-top: 20px;
}

.link-button {
    display: block;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 10px;
    transition: background-color 0.3s ease;
}

.link-button:hover {
    background-color: #0056b3;
}

/* Định dạng các icon mạng xã hội */
.social {
    margin-top: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    text-decoration: none;
    color: #333;
    font-size: 18px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff;
}
