@import url(common.css);

body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/main-bg2.png");
    background-repeat: repeat-x;

    height: 100%;
    overflow: hidden;
}

body > div {
    position: relative;
    width:100%;
    height:100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-image: url("../images/main-bg.png");
    background-repeat: no-repeat;
    background-position: left top;
}

body > div > .black-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 100px);
    background-color: rgba(0, 0, 0, 0.2);
}

.container {
    height: 817px;
    z-index: 100;
}


main {
    position: relative;

    width:100%;
    height: 100%;

    color: #fff;
    text-align: center;
}

main > div {
    position: absolute;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

main > div.txt-box1 {
    top: 275px;
    left: 90px;
}

main > div.txt-box2 {
    top: 275px;
    left: 700px;
}

main .txt1 {
    font-size: 27px;
    font-weight: 700;
}

main .txt2 {
    font-size: 15px;
}

main .txt3 {
    font-size: 15px;
    line-height: 160%;
    text-align: left;
}

main .links {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;

}

main .links a {
    padding: 8px 14px;
    border-radius: 6px;
    background: #016ACB;
    color: #fff;
}

footer {
    width: 1280px;
    z-index: 100;
}