body {
    background-image: url('background.jpg'); /* Đường dẫn đến hình nền của bạn */
    background-size: cover; /* Đảm bảo hình ảnh bao phủ toàn bộ màn hình */
    background-position: center; /* Căn chỉnh hình ảnh ở giữa màn hình */
    background-repeat: no-repeat; /* Không lặp lại hình ảnh */
    color: #fff;
    font-family: Arial, sans-serif;
    text-align: center;
    padding: 20px;
    margin: 0;
}

.container {
    max-width: 500px;
    margin: 0 auto;
    padding: 20px;
}

.profile-image {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    margin-bottom: 20px;
    object-fit: cover;
}

h1 {
    font-size: 24px;
    margin-bottom: 30px;
}

.links {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.link-button {
    display: flex;
    align-items: center;
    justify-content: center; /* Căn giữa nội dung theo chiều ngang */
    width: 100%;
    padding: 15px;
    margin: 10px 0;
    background-color: rgba(255, 255, 255, 0.1);
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    border: 2px solid #fff; /* Đặt viền màu trắng */
    transition: background-color 0.3s ease, border 0.3s ease;
}

.link-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.icon {
    width: 35px;
    height: 35px;
    position: absolute;
    margin-left: -35vh;
}
