/* ---- PAGE 0 ---- */
#page0 {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 0;
    display: block;
}

/* ảnh nền full chiều rộng, cao tự do */
#page0 .page0-bg {
    width: 100%;
    height: auto;
    display: block;
}

/* khối nội dung chồng lên trên */
#page0 .page0-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    /*padding: 40px 20px;*/
    text-align: center;
    color: #fff;
    padding-top: 10%;
}

/* logo ở bên trên giữa */
.page0-logo {
    width: 75%;
    height: auto;
    margin-bottom: 10%;
}

/* đoạn văn giữa ảnh */
.page0-text {
    width: 80%;
    font-size: 1.2vw;
    line-height: 1.5;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0,0,0,.5);
}

