.container {
    position: relative;
}

.background-image {
    width: 100%;
    height: 100vh; /* Điều chỉnh chiều cao theo ý muốn */
    object-fit: cover;
}

.content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.959); /* Màu đen mờ */
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}
body {
    font-family: Arial, sans-serif;
    background-image: url('anm6370.jpg'); 
    background-size: cover;
    text-align: center; 
}

h1 {
    color: #ffffff ;
    font-size: 29px;
    margin-top: 100px; /* Điều chỉnh khoảng cách từ trên xuống */
}

hr {
    border-top: 2px solid white;
    width: 50%;
    margin: 50px auto; /* Căn giữa và điều chỉnh khoảng cách */
}


h2 {
    color: #ffffff ;
    font-size: 29px;
    margin-top: 100px;
}

h3 {
    color: #ffffff ;
    font-size: 29px;
    margin-top: 100px; /* Điều chỉnh khoảng cách từ trên xuống */
}

p {
    font-size: 16px;
    color: #ffffff ;
    margin-bottom: 20px;
}

.footer {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: transparent; /* Nền trắng mờ */
    padding: 10px;
    text-align: left;
}

.footer span {
    color: #ffffff ;
    font-size: 12px;
    float: right;
    margin-right: 10px;
}    

