body {
    margin: 0;
    padding: 0;
}

.container {
    margin: auto;
    background-color: #000000;
}

.line-container {
    background-color: black;
    display: flex;
    align-items: center;
    width: 100%;
    margin-top: 60px;
}

.line1 {
    background-color: red;
    height: 1px;
    flex: 1;
    margin-right: 25px;
}

.line-container h1 {
    margin: 0;
    color: #ffffff;
    font-size: 30px;
    font-weight: 600;
    font-family: "Red Hat Display", sans-serif;
}

.line2 {
    background-color: red;
    height: 1px;
    flex: 4;
    opacity: 0;
    margin-left: 10px;
}

.container2,
.performance-stages,
.behind-the-scenes {
    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,
.performance,
.bts {
    position: relative;
    width: 100%;
    /* Make the iframe container fill the video-card */
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

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

.behind-the-scenes {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 20px;
    padding: 20px 140px;
    color: #ffffff;
    text-align: left;
    font-family: "Red Hat Display", sans-serif;
}

.behind-the-scenes .video-card {
    width: calc(33.5% - 20px);
    /* Try for two video cards per row */
    box-sizing: border-box;
    /* Ensure padding and border are included in the width */
}

.behind-the-scenes .mv,
/* Targeting the video iframe container within .behind-the-scenes */
.behind-the-scenes .bts {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.behind-the-scenes .mv iframe,
.behind-the-scenes .bts iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

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

.text h1 {
    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;
}

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

    .line-container {
        background-color: black;
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 60px;
    }

    .line1 {
        background-color: red;
        height: 1px;
        flex: 1;
        margin-right: 25px;
    }

    .text h1 {
        margin: 0;
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        font-family: "Red Hat Display", sans-serif;
    }

    .line2 {
        background-color: red;
        height: 1px;
        flex: 4;
        opacity: 0;
        margin-left: 10px;
    }

    .container2,
    .performance-stages,
    .behind-the-scenes {
        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(100% - 20px * 2 / 3);
        /* Roughly 3 per row with the gap */
    }

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

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

    .behind-the-scenes .video-card {
        width: calc(100% - 20px);
        box-sizing: border-box;
    }

    .behind-the-scenes .mv,
    .behind-the-scenes .bts {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .behind-the-scenes .mv iframe,
    .behind-the-scenes .bts iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }


    .text h1 {
        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;
    }
}

@media screen and (max-width: 375px) {
    /* This is for my mobile size */

    .line-container {
        background-color: black;
        display: flex;
        align-items: center;
        width: 100%;
        margin-top: 60px;
    }

    .line1 {
        background-color: red;
        height: 1px;
        flex: 1;
        margin-right: 25px;
    }

    .text h1 {
        margin: 0;
        color: #ffffff;
        font-size: 24px;
        font-weight: 600;
        font-family: "Red Hat Display", sans-serif;
    }

    .line2 {
        background-color: red;
        height: 1px;
        flex: 4;
        opacity: 0;
        margin-left: 10px;
    }

    .container2,
    .performance-stages,
    .behind-the-scenes {
        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 20px;
        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(100% - 20px);
        /* Roughly 3 per row with the gap */
    }

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

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

    .behind-the-scenes {
        display: flex;
        flex-wrap: wrap;
        gap: 20px;
        margin-top: 20px;
        padding: 20px 20px;
        color: #ffffff;
        text-align: left;
        font-family: "Red Hat Display", sans-serif;
    }

    .behind-the-scenes .video-card {
        width: calc(100% - 20px);
        /* Try for two video cards per row */
        box-sizing: border-box;
        /* Ensure padding and border are included in the width */
    }

    .behind-the-scenes .mv,
    /* Targeting the video iframe container within .behind-the-scenes */
    .behind-the-scenes .bts {
        position: relative;
        width: 100%;
        aspect-ratio: 16 / 9;
        overflow: hidden;
    }

    .behind-the-scenes .mv iframe,
    .behind-the-scenes .bts iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }