@charset "utf-8";

#about{
    margin-bottom: 150px;
}

#border{
    display: inline-block;
    width: max-content;
    font-size: 24px;
    padding-bottom: 10px;
    margin-bottom: 30px;
    border-bottom: 3px solid black;
}

h3{
    font-size: 30px;
    margin: 50px 0;
}
#txt-box{
    font-size: 18px;
}

.underlined-text {
    position: relative;
    display: inline-block;
    color: white; /* Adjust color as needed */
}

.underlined-text::after {
    content: "";
    position: absolute;
    width: 80%; /* Set the underline width to 80% */
    height: 2px; /* Adjust thickness of the underline */
    bottom: -20px; /* Adjust distance between text and underline */
    left: 50%;
    transform: translateX(-50%); /* Center the underline */
    background-color: white; /* Adjust underline color */
}

.responsive-image {
    max-width: 90%;
    height: auto;
}

/*--------------------반응형-----------------------*/



@media(max-width:1280px){
    .flex-wrap{
        align-items: flex-start;
    }
    .flex-wrap div:nth-child(2) p{
        font-size: 20px;
        margin-bottom: 20px;
    }
    #about{
        margin-bottom: 100px;
    }
}


@media(max-width:940px){
    .flex-wrap div:nth-child(2) p{
        font-size: 16px;
    }
}




@media(max-width:768px){
    /* .inner{
        width: 85%;
        margin: auto;
    } */
    #about{
        margin-bottom: 50px;
    }

    #border{
        font-size: 16px;
    }
 
    h3{
        font-size: 24px;
    }

    .flex-wrap{
        gap: 50px;
    }

    .flex-wrap div:first-child{
        margin: auto;
        width: 70%;
        min-width: revert;
    }

    .flex-wrap div:nth-child(2){
        width: 100%;
    }


    .flex-wrap{
        flex-direction: column;
    }
    
}


@media(max-width:500px){
    .flex-wrap div:first-child{
        width: 100%;
    }
}