* {
    padding: 0;
    margin: 0;
    font-family: system-ui, sans-serif;
}

main {
    height: 100svh;
    width: 100%;
}

body {
    width: 100%;
    height: 100svh;
    background-image: url("../images/bg.webp");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top left;
    overflow: hidden;
}

.btn {
    width: 700px;
}

.content {
    width: 70%;
    max-width: 1740px;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    padding: 0 50px;
}

.lantern_l {
    position: absolute;
    left: 20px;
    top: 20px;
}

.hero {
    position: absolute;
    bottom: 0;
    right: 0;
    height: 98%;
    z-index: 1;
}

.cloud_b {
    position: absolute;
    left: 0;
    bottom: 0;
}

    .title_t {
        width: 75%;
    }

    .title_b {
        width: 65%;
    }

@media screen and (max-width: 1740px) {
    .content {
    padding: 0 50px 0 0;
    }
}

@media screen and (max-width: 1340px) {
    .title_t {
        width: 65%;
    }
    .title_b {
        width: 55%;
    }
    .content {
    padding: 0 50px 0 0;
}

}

@media screen and (max-width: 768px) {
    body {
        height: 100vh;
    }
    .lantern_l {
        width: 100px;
    }
    .cloud_b {
        height: unset;
        width: 100%;
    }
    .hero {
        height: unset;
        width: 90%;
    }
    .content {
        width: 100%;
        padding: unset;
        padding-top: 20%;
        justify-content: flex-start;
        height: unset;
    }
    .title_t,
    .title_b {
        width: 90%;
    }
    main {
        height: 100%;
    }
}

@media screen and (max-width: 700px) {
    .btn {
        width: 90%;
    }
}