@import url("https://fonts.googleapis.com/css2?family=Oxanium:wght@200..800&display=swap");

body {
    background-color: rgb(17, 0, 49);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: "Oxanium", sans-serif;
}

.container {
    padding-left: 50px;
    padding-right: 50px;
}

.txt {
    background-color: #162E49;
    color: white;
    border: solid 4px #2A5782;
    border-radius: 5px;
    width: max-content;
    white-space: nowrap;
    padding-left: 2px;
    padding-right: 2px;
}

.playlists > div {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    margin-bottom: 30px;
    position: relative;
}

.playlists > div > h2 {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    margin: 0;
}

.playlists > div > img {
    flex-shrink: 0;
    position: relative;
}

img {
    border: hidden;
    border-radius: 20px;
    height: 352px;
    width: 352px;
}

iframe {
    flex: 1;
    min-width: 300px;
}

@media (max-width: 768px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .txt {
        font-size: clamp(1rem, 4vw, 1.5rem);
    }

    .playlists > div {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .playlists > div > h2 {
        position: relative;
        top: 0;
        left: 0;
        margin-bottom: 10px;
    }

    img {
        height: 250px;
        width: 250px;
    }

    iframe {
        min-width: 100%;
    }
}


@media (max-width: 480px) {
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    img {
        height: 200px;
        width: 200px;
    }

    iframe {
        height: 300px !important;
    }
}