@font-face {
    font-family: 'PLight';
    src: url('/Font/Pretendard-Light.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PRegular';
    src: url('/Font/Pretendard-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PMedium';
    src: url('/Font/Pretendard-Medium.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PSemiBold';
    src: url('/Font/Pretendard-SemiBold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'PBold';
    src: url('/Font/Pretendard-Bold.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}



body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}


.main {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000f1a;
    width: 100%;
}

.main_section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 70%;
    margin: 0 auto;
    gap: 20px;
}

.f {
    flex: 1;
    z-index: 3;
}

.image_wrapper {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 50%;
    pointer-events: none;
    position: relative;
}
.image_wrapper img {
    max-width: 100%;
    height: auto;
    will-change: transform;
    transition: transform 0.1s linear;
}

.bg_img {
    position: absolute;
    opacity: 0.4;
    z-index: 1;
    width: 500px;
}

.bb_img {
    z-index: 2;
    width: 550px;
}

.main_title {
    width: 100%;
    text-align: left;
    font-size: 32px;
    color: rgba(255, 255, 255, 0.871);
    line-height: 50px;
    font-family: "PSemiBold";
    margin: 0;
}

.main_title span {
    color: #37B3CC;
}

.main_sub_title {
    margin: 0;
    text-align: left;
    font-size: 22px;
    line-height: 36px;
    color: rgba(255, 255, 255, 0.507);
    font-family: "Plight";
}


.button {
    width: 300px;
    margin-top: 30px;
    outline: none;
    border: none;
    background-color:#3555D4;
    border-radius: 10px;
    font-family: 'PRegular';
    padding: 18px 16px;
    font-size: 15px;
    color: #ecedff;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: 
        0.3s background-color;
}


.button:hover {
    background-color:#2e4cc4;
}


@media screen and (max-width: 1000px) {

    .main_section {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .main {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 100vh;
        background-color: #000f1a;
        width: 100%;
    }

    .main_title {
        width: 100%;
        text-align: left;
        font-size: 26px;
        color: rgba(255, 255, 255, 0.871);
        line-height: 40px;
        word-break: keep-all;
        font-family: "PSemiBold";
        margin: 0;
    }


    .main_sub_title {
        margin: 0;
        margin-top: 20px;
        text-align: left;
        font-size: 16px;
        line-height: 28px;
        color: rgba(255, 255, 255, 0.507);
        font-family: "Plight";
    }
    
    .button {
        width: auto;
        margin-top: 30px;
        outline: none;
        border: none;
        background-color:#3555D4;
        border-radius: 10px;
        font-family: 'PRegular';
        padding: 18px 16px;
        font-size: 15px;
        color: #ecedff;
        cursor: pointer;
        text-align: center;
        box-sizing: border-box;
        transition: 
            0.3s background-color;
    }


}