body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.intro {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 35px 150px 150px;
    background-color: #000000;
}

.intro-text {
    width: 50%;
    text-align: left;
}

.intro-image {
    width: 50%;
    text-align: center;
}

.intro-image img {
    width: 85%;
    border-radius: 10px;
}

.intro-text h2 {
    font-size: 28px;
    color: #FFD700;
    font-family: 'DM Serif Display', serif;
    font-weight: 100;
    letter-spacing: 2px;
}

.intro-text h1 {
    font-size: 90px;
    color: #C40000;
    font-family: 'DM Serif Display', serif;
    margin-top: -30px;
    font-weight: normal;
}

.intro-text p {
    font-size: 18px;
    font-family: 'Red Hat Display', sans-serif;
    line-height: 1.8;
    color: #EAEAEA;
    margin-top: -50px;
    margin-bottom: 30px;
}

.button {
    display: inline-block;
    padding: 10px 60px;
    color: #EAEAEA;
    font-family: 'Red Hat Display', sans-serif;
    font-size: 18px;
    text-decoration: none;
    border-radius: 25px;
    border: #C40000 solid 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.button:hover {
    background-color: #C40000;
    color: #EAEAEA;
}

.music {
    padding: 10px 100px 100px;
    background-color: #000000;
    color: #EAEAEA;
    text-align: center;
    margin-top: -50px;
}

.music h1 {
    font-size: 50px;
    color: #C40000;
    font-family: 'DM Serif Display', serif;
    position: relative;
    font-weight: normal;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.music h1::before,
.music h1::after {
    content: "";
    display: block;
    width: 550px;
    height: 1.3px;
    background-color: #811010;
    position: absolute;
    top: 50%;
}

.music h1::before {
    left: -100px;
}

.music h1::after {
    right: -100px;
}

.text-button {
    font-family: 'Red Hat Display', sans-serif;
    display: inline-block;
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    padding: 5px 10px;
    transition: all 0.3s ease;
    position: relative;
    align-items: right;
    text-align: right;
}

.text-button:hover {
    text-decoration: underline;
}

.music-album {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}

.album1,
.album2,
.album3 {
    text-align: center;
}

.album1 img,
.album2 img,
.album3 img {
    width: 100%;
    max-width: 320px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.8);
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.album1 img:hover,
.album2 img:hover,
.album3 img:hover {
    transform: rotateY(15deg);
    cursor: pointer;
}

.album1 .info,
.album2 .info,
.album3 .info {
    margin-top: -20px;
    color: #EAEAEA;
    font-family: 'Red Hat Display', sans-serif;
    text-align: left;
}

.album1 .info h5,
.album2 .info h5,
.album3 .info h5 {
    font-size: 18px;
    font-weight: bold;

}

.album1 .info p,
.album2 .info p,
.album3 .info p {
    font-size: 16px;
    color: #e9e9e9;
    margin-top: -25px;
}

.videos {
    padding: 10px 100px 100px;
    background-color: #000000;
    color: #EAEAEA;
    text-align: center;
}

.videos h1 {
    font-size: 50px;
    color: #C40000;
    font-family: 'DM Serif Display', serif;
    position: relative;
    font-weight: normal;
    letter-spacing: 2px;
}

.videos h1::before,
.videos h1::after {
    content: "";
    display: block;
    width: 550px;
    height: 1.3px;
    background-color: #811010;
    position: absolute;
    top: 50%;

}

.videos h1::before {
    left: -100px;
}

.videos h1::after {
    right: -100px;
}

.mv {
    display: flex;
    /* Enable flex layout for the video cards */
    flex-wrap: wrap;
    /* Allow video cards to wrap to the next line */
    gap: 20px;
    margin-top: 20px;
    padding: 20px 140px;
    color: #ffffff;
    text-align: left;
    font-family: "Red Hat Display", sans-serif;
}

.video-card {
    /* Define a width for each video card, so they try to fit in a row */
    /* You might need to adjust this percentage based on how many you want per row */
    width: calc(33.33% - 20px * 2 / 3);
    /* Roughly 3 per row with the gap */
}

.mv iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.mv1 {
    position: relative;
    width: 100%;
    /* Make the iframe container fill the video-card */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.text h3 {
    color: #ffffff;
    text-align: left;
    font-family: "Red Hat Display", sans-serif;
    font-size: 20px;
}

.text p {
    color: #ffffff;
    text-align: left;
    font-family: "Red Hat Display", sans-serif;
    font-size: 14px;
}

.gallery {
    padding: 10px 100px 100px;
    background-color: #000000;
    color: #EAEAEA;
    text-align: center;
}

.gallery h1 {
    font-size: 50px;
    color: #C40000;
    font-family: 'DM Serif Display', serif;
    position: relative;
    font-weight: normal;
    letter-spacing: 2px;
}

.gallery h1::before,
.gallery h1::after {
    content: "";
    display: block;
    width: 540px;
    height: 1.3px;
    background-color: #811010;
    position: absolute;
    top: 50%;

}

.gallery h1::before {
    left: -100px;
}

.gallery h1::after {
    right: -100px;
}

.image {
    display: flex;
    min-height: 600px;
    width: 100%;
    gap: 20px;
    margin-top: 50px;
}

.container1 {
    min-height: 600px;
    width: 33.3%;
}

.gallery {
    padding: 10px 100px 100px;
    background-color: #000000;
    color: #EAEAEA;
    text-align: center;
}

.gallery h1 {
    font-size: 50px;
    color: #C40000;
    font-family: 'DM Serif Display', serif;
    position: relative;
    font-weight: normal;
    letter-spacing: 2px;
}

.gallery h1::before,
.gallery h1::after {
    content: "";
    display: block;
    width: 540px;
    height: 1.3px;
    background-color: #811010;
    position: absolute;
    top: 50%;
}

.gallery h1::before {
    left: -100px;
}

.gallery h1::after {
    right: -100px;
}

.sub-container1 {
    background-image: url(../image/seulgi.jpg);
    min-height: 300px;
    width: 100%;
    background-size: cover;
    margin-bottom: 20px;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.sub-container1:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.sub-container2 {
    background-image: url(../image/yeri.jpg);
    min-height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.sub-container2:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.container2 {
    background-image: url(../image/wendy.jpg);
    min-height: 600px;
    width: 33.3%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.container2:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.container3 {
    min-height: 600px;
    width: 33.3%;
}

.sub-container4 {
    background-image: url(../image/joy.jpg);
    min-height: 300px;
    width: 100%;
    background-size: cover;
    margin-bottom: 20px;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.sub-container4:hover {
    transform: scale(0.95);
    cursor: pointer;
}

.sub-container5 {
    background-image: url(../image/irene.jpg);
    min-height: 300px;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease-in-out;
    transform-origin: center;
}

.sub-container5:hover {
    transform: scale(0.95);
    cursor: pointer;
}

@media screen and (max-width: 1268px) {
    .intro-text h2 {
        font-size: 24px;
    }

    .intro-text h1 {
        font-size: 85px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .button {
        font-size: 17px;
    }

    @media screen and (max-width: 1245px) {
        .intro-text h2 {
            font-size: 24px;
        }

        .intro-text h1 {
            font-size: 75px;
        }

        .intro-text p {
            font-size: 15px;
        }

        .intro-image {
            width: 60%;
            text-align: center;
        }

        .button {
            font-size: 16px;
        }

    }



    @media screen and (max-width: 1300px) {

        .music h1::before,
        .music h1::after {
            width: 380px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 370px;
        }

        .videos h1::before {
            left: -100px;
        }

        .videos h1::after {
            right: -100px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 340px;
        }
    }

    @media screen and (max-width: 952px) {

        .music h1::before,
        .music h1::after {
            width: 330px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 320px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 300px;
        }
    }

    @media screen and (max-width: 830px) {

        .music h1::before,
        .music h1::after {
            width: 300px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 280px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 250px;
        }
    }

    @media screen and (max-width: 720px) {

        .music h1::before,
        .music h1::after {
            width: 220px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 220px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 200px;
        }
    }

    @media screen and (max-width: 768px) {

        .intro {
            flex-direction: column-reverse;
            justify-content: space-between;
            align-items: center;
            padding: 60px;
            background-color: #000000;
            margin-bottom: 50px;
        }

        .intro-text {
            width: 100%;
            text-align: center;
        }

        .intro-image {
            width: 80%;
            text-align: center;
        }

        .intro-image img {
            width: 100%;
            margin-top: -30px;
            margin-bottom: 20px;
        }

        .intro-text h2 {
            font-size: 20px;
            color: #FFD700;
            font-family: 'DM Serif Display', serif;
            font-weight: 100;
            letter-spacing: 2px;
        }

        .intro-text h1 {
            font-size: 60px;
            color: #C40000;
            font-family: 'DM Serif Display', serif;
            margin-top: -20px;
            font-weight: normal;
        }

        .intro-text p {
            font-size: 15.5px;
            flex-wrap: wrap;
            font-family: 'Red Hat Display', sans-serif;
            line-height: 1.8;
            color: #EAEAEA;
            margin-top: -20px;
            margin-bottom: 30px;
        }

        .button {
            display: inline-block;
            padding: 10px 60px;
            color: #EAEAEA;
            font-family: 'Red Hat Display', sans-serif;
            font-size: 16px;
            text-decoration: none;
            border-radius: 25px;
            border: #C40000 solid 2px;
            text-decoration: none;
            transition: all 0.3s ease;
        }

        .button:hover {
            background-color: #C40000;
            color: #EAEAEA;
        }

        .music {
            padding: 10px 100px 100px;
            background-color: #000000;
            color: #EAEAEA;
            text-align: center;
            margin-top: -100px;
        }

        .music h1 {
            font-size: 40px;
            color: #C40000;
            font-family: 'DM Serif Display', serif;
            position: relative;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .music h1::before,
        .music h1::after {
            width: 210px;
        }

        .music-album {
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            gap: 40px;
            margin-top: 60px;
            margin-bottom: 30px;
        }

        .album1,
        .album2,
        .album3 {
            text-align: center;
        }

        .videos {
            padding: 10px 100px 100px;
            background-color: #000000;
            color: #EAEAEA;
            text-align: center;
            margin-top: -100px;
        }

        .videos h1 {
            font-size: 40px;
            color: #C40000;
            font-family: 'DM Serif Display', serif;
            position: relative;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 180px;
        }

        .mv {
            flex-direction: column;
            justify-content: space-evenly;
            align-items: center;
            gap: 40px;
            margin-top: 60px;
            margin-bottom: 30px;
        }

        .mv1,
        .mv2,
        .mv3 {
            text-align: center;
        }

        .gallery {
            padding: 10px 100px 100px;
            background-color: #000000;
            color: #EAEAEA;
            text-align: center;
            margin-top: -100px;
        }

        .gallery h1 {
            font-size: 40px;
            color: #C40000;
            font-family: 'DM Serif Display', serif;
            position: relative;
            font-weight: normal;
            letter-spacing: 2px;
        }

        .gallery h1::before,
        .gallery h1::after {
            content: "";
            display: block;
            width: 170px;
            height: 1.3px;
            background-color: #811010;
            position: absolute;
            top: 50%;
        }

        .gallery h1::before {
            left: -100px;
        }

        .gallery h1::after {
            right: -100px;
        }

        .image {
            flex-direction: column;
            min-height: 600px;
            width: 100%;
            gap: 20px;
        }

        .container1 {
            min-height: 600px;
            width: 100%
        }

        .container2 {
            min-height: 600px;
            width: 100%
        }

        .container3 {
            min-height: 600px;
            width: 100%
        }
    }

    @media screen and (max-width: 648px) {

        .music h1::before,
        .music h1::after {
            width: 170px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 150px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 120px;
        }
    }

    @media screen and (max-width: 570px) {

        .music h1::before,
        .music h1::after {
            width: 150px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 140px;
        }

        .gallery h1::before,
        .gallery h1::after {
            width: 100px;
        }
    }


    @media screen and (max-width: 375px) {
        .intro {
            flex-direction: column-reverse;
            justify-content: space-between;
            align-items: center;
            padding: 60px 30px;
            background-color: #000000;
            margin-bottom: 50px;
        }

        .intro-text {
            width: 100%;
            text-align: center;
        }

        .intro-image {
            width: 100%;
            text-align: center;
        }

        .intro-image img {
            width: 100%;
            margin-top: -30px;
            margin-bottom: 20px;
        }

        .music h1::before,
        .music h1::after {
            width: 80px;
        }

        .videos h1::before,
        .videos h1::after {
            width: 80px;
        }

        .mv {
            display: flex;
            /* Enable flex layout for the video cards */
            flex-wrap: wrap;
            /* Allow video cards to wrap to the next line */
            gap: 20px;
            margin-top: 20px;
            padding: 20px 30px;
            color: #ffffff;
            text-align: left;
            font-family: "Red Hat Display", sans-serif;
        }

        .video-card {
            width: calc(100% - 20px);
        }

        .mv iframe {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
        }

        .mv1 {
            position: relative;
            width: 100%;
            /* Make the iframe container fill the video-card */
            aspect-ratio: 16 / 9;
            overflow: hidden;
        }


        .gallery h1::before,
        .gallery h1::after {
            width: 70px;
        }

        .gallery {
            padding: 10px 15px;
            margin-bottom: 30px;
        }
    }