body, html {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: visible;
}

.background {
    position: relative;
    height: 100%;
    width: 100%;
}


.video-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1; /* Đặt video ở trên cùng ban đầu */
}

.content {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    padding: 30px;
    border-radius: 10px;
    z-index: 2; /* Nội dung chính ở trên video khi hiển thị */
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.7);
}

.highlight {
    color: #00ff00;
}

.button {
    margin-top: 20px;
    padding: 10px 20px;
    background-color: rgba(79, 79, 79, 0.6); /*làm mờ màu bằng số 0.6 ở sau hệ màu rgb*/
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 16px;
    cursor: pointer;
}
.button:hover {
   background-color: rgba(79, 79, 79, 0.72) 
}


.skip-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: rgba(79, 79, 79, 0.6);
    color: white;
    border: none;
    border-radius: 20px;
    font-size: 14px;
    cursor: pointer;
    z-index: 3; /* Nút Skip ở trên cùng */
    display: block;
}

.skip-button:hover {
    background-color: rgba(79, 79, 79, 0.72);
}


.bg-img{
    width: 100%;
    height: 100%;
}
.content .button a{
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}
        


.branding-text title {
        font-weight: bold;
        font-size: 16px;
        white-space: center ;
    }
.navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 20px;
            background-color: #2f6b2f;
            color: white;
        }
        .branding-container {
            display: flex;
            align-items: center;
            gap: 10px;
        }

       

        .tagline {
            display: block; /* Mặc định hiển thị trên desktop */
            font-size: 14px;
            margin-top: 4px;
        }

        /* Menu */
       
    
      
    
/* Giao diện mobile */
@media (max-width: 768px) {
    .menu {
        gap: 10px;
        padding: 6px 8px;
    }

    .menu a {
        font-size: 13px;
        padding: 5px 8px;
    }

    .navbar {
    display: flex;
    flex-direction: column; /* Cho layout dọc */
    padding: 10px 20px;
    background-color: #f5f5f5;
    }
 
   
    .bg-img {
        width: 100%;
        height: 100vh;
        object-fit: cover; 
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1; 
    }

    .login-icon {
        width: 18px;
        height: 18px;
    }
    .menu {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    padding: 8px 10px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    white-space: nowrap; /* Ngăn a bị xuống dòng */
    max-width: 100vw; /* Giới hạn chiều ngang trong màn hình */
    box-sizing: border-box; /* Tính cả padding vào width */
}

.menu::-webkit-scrollbar {
    display: none; /* Chrome, Safari */
}

.menu a {
    flex-shrink: 0;
    padding: 6px 10px;
    font-size: 14px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    border-radius: 4px;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
}

/* Định dạng icon đăng nhập */
.login-icon {
    width: 20px;
    height: 20px;
}

  
.content{
    position: absolute;
    top: 53%;
    left: 5%;
    transform: translate(-2%, -50%);
}

h2, h3 {
    margin-bottom: 20px;
}

.button {
    margin-top: 140px;
}
       

}
