body {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    background-color: rgb(243, 243, 243);
}

/* Lớp chứa ảnh nền */
body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("../images/fb1.jpeg") no-repeat center center fixed;
    background-size: cover;
    filter: blur(6px) brightness(30%); /* mờ + tối hơn */
    z-index: 0;
}
.anh1 {
    position: absolute;
    top: -50%;       /* căn giữa theo chiều dọc */
    left: 15%;      /* căn giữa theo chiều ngang */
    transform: translate(-50%, -50%); /* dịch đúng tâm */
    width: 5%;     /* chỉnh kích thước theo ý muốn */
    max-width: 350px;
    height: auto;
    z-index: 2;     /* cao hơn overlay và nền */
    filter: brightness(0) invert(1); 
}
/* Lớp phủ mờ (có thể bỏ nếu đã dùng brightness ở trên) */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Nội dung */
.main {
    position: relative;
    z-index: 2;
    margin-top: 10%;
}


.h1, .h2 {
    text-align: center;
    font-size: 1.8vw;
    margin: 10px 0;
    width: 40%;
    transform: translateX(75%);
    color: #fff;
}

.h3 {
    text-align: center;
    font-size: 1.2vw;
    margin: 10px 0;
    width: 40%;
    transform: translateX(75%);
    color: #fff;
}

.button {
    background-color: #ffffff;
    color: rgb(0, 0, 0);
    padding: 0.9% 0;
    font-size: 1.2vw;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    width: 10%;
    margin: 50px auto;
    display: block;
    text-align: center;
    text-decoration: none;
}

/* Màn hình nhỏ */
@media (min-width: 240px) and (max-width: 768px) {
    .main {
        margin-top: 50%;
    }
    .h1, .h2 {
        font-size: 7vw;
        width: 80%;
        margin-left: -50%;
    }
    .h3 {
        font-size: 4vw;
        width: 90%;
        margin-left: -63%;
    }
    .button {
        width: 30%;
        font-size: 4vw;
        padding: 3% 0;
    }
    .anh1{
        width: 20%;
    }
}

/* Màn hình trung bình */
@media (min-width: 768px) and (max-width: 1200px) {
    .main {
        margin-top: 20%;
    }
    .h1, .h2 {
        font-size: 3.5vw;
        width: 60%;
        margin-left: -25%;
    }
    .h3 {
        font-size: 2vw;
        width: 70%;
        margin-left: -38%;
    }
    .button {
        width: 30%;
        font-size: 2vw;
        padding: 2% 0;
    }
    .anh1{
        width: 15%;
    }
}
