html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    overflow-x: hidden;
    overflow-y: scroll;
    font-family: 'Pretendard', sans-serif;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

body::-webkit-scrollbar {
    display: none;
}

.bg-container {
    position: relative;
}

.bg-container img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.radius-detail {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 40px;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    background: white;
}

.detail-header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 1640px;
}

.detail-sub {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.detail-sub h1 {
    font-family: 'Nanum Myeongjo', serif;
    font-size: 58px;
    font-weight: 700;
    line-height: 1.5;
}

.detail-sub p {
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.detail-sub2 {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.detail-sub2 img {
    width: auto;
    height: 24px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .bg-container img {
        height: 400px;
    }
    .detail-sub h1 {
        font-size: 30px;
    }
    .detail-sub2 {
        flex-wrap: wrap;
    }
    .detail-sub p {
        width: 100%;
        font-size: 14px;
        text-align: left;
    }
}