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

body {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    color: #333;
    line-height: 1.6;
    padding: 0 10px; /* Tăng thêm khoảng cách hai bên */
}

header {
    text-align: center;
    padding: 30px;
    background-color: #db0eca;
    color: rgb(202, 212, 208);
    border-radius: 10px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Thêm bóng đổ cho header */
    margin-bottom: 20px; /* Khoảng cách giữa header và phần tiếp theo */
}

header img.avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 20px 0;
    border: 4px solid #fff; /* Thêm viền trắng quanh ảnh */
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1); /* Bóng đổ cho ảnh */
}

h1, h2 {
    font-size: 2.2em;
    margin-bottom: 10px;
    color: #fff;
}

h1 {
    margin-top: 10px;
}

section {
    padding: 30px;
    margin-bottom: 30px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#so-thich ul, #mang-xa-hoi ul {
    list-style-type: none;
    padding: 0;
}

#so-thich li, #mang-xa-hoi li {
    margin: 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

#so-thich .hobby-icon {
    width: 30px;
    margin-right: 15px;
}

a {
    color: #19201a;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

a:hover {
    text-decoration: underline;
    background-color: #db0eca;
    color: #fff;
}

footer {
    text-align: center;
    padding: 15px;
    background-color: #333;
    color: white;
    margin-top: 40px;
    border-radius: 8px;
}

/* Responsive Styles */
@media (max-width: 768px) {
    body {
        padding: 0 15px; /* Tăng khoảng cách khi xem trên điện thoại */
    }

    header img.avatar {
        width: 100px;
        height: 100px;
    }

    h1 {
        font-size: 1.8em;
    }

    h2 {
        font-size: 1.6em;
    }

    section {
        padding: 20px;
    }

    #so-thich li, #mang-xa-hoi li {
        font-size: 1em;
        flex-direction: column;
        align-items: flex-start;
    }

    #so-thich .hobby-icon {
        margin-right: 0;
        margin-bottom: 8px;
    }
}
