body {
    height: 100vh;
}

.album_btn_back {
    margin: 2rem 0 0 3rem;
    border: none;
    color: white;
    background-color: rgb(255, 179, 0);
    padding: 0.7rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.7s;
    font-weight: 700;
}

.album_btn_back:hover {
    /* border-radius: 19px 0 19px 0; */
    background-color: rgb(255, 128, 0);
    transform: scale(0.9);
}

.block_sub_album {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 7rem 4rem;
}

.box_sub_album {
    display: flex;
    justify-content: space-between;
    gap: 1.5rem;
}

.box_sub_album_main_img {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
}

.box_sub_album_img {
    height: 450px;
    width: 450px;
    border-radius: 10px;
    overflow: hidden;
}

.box_sub_album_img>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box_sub_album_text {
    width: 450px;
    color: black;
}

.box_sub_album_text>h3 {
    font-size: 25px;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgb(255, 67, 67);
    padding: 0 1rem;
}

.box_sub_album_text>ul {
    list-style-type: none;
    margin-top: 0.5rem;
}

.box_sub_album_text>ul>li {
    padding: 0.2rem 1rem;
    font-size: 18px;
    font-weight: 500;
}


/* ===================Button====================== */
.box_sub_album_main_img>.sub_album_btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.box_sub_album_main_img>.sub_album_btn>.btn_yt {
    background-color: rgb(255, 0, 0);
}

.box_sub_album_main_img>.sub_album_btn>.btn_sf {
    background-color: rgb(30, 215, 96);
}

.box_sub_album_main_img>.sub_album_btn>button {
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 7px;
    transition: all 0.7s;
    cursor: pointer;
}

.box_sub_album_main_img>.sub_album_btn>button>a {
    text-decoration: none;
    font-size: 17px;
    font-weight: 650;
    color: rgb(255, 255, 255);
    letter-spacing: 1px;
}

.box_sub_album_main_img>.sub_album_btn>button:hover {
    /* border-radius: 27px 7px 27px 7px; */
    transform: scale(0.9);
}



/* ==================Respone===================== */
@media (max-width: 1200px) {
    .block_sub_album {
        padding: 5rem 4rem;
    }

    .box_sub_album {
        gap: 1rem;
    }

    .box_sub_album_img {
        height: 400px;
        width: 400px;
    }

    .box_sub_album_text {
        width: 400px;
    }
}

@media (max-width: 900px) {
    .album_btn_back {
        margin: 1.5rem 0 0 2.5rem;
        padding: 0.6rem 1.3rem;
    }

    .box_sub_album {
        gap: 0.7rem;
    }

    .box_sub_album_img {
        height: 300px;
        width: 300px;
    }

    .box_sub_album_text {
        width: 300px;
    }

    .box_sub_album_text>h3 {
        font-size: 20px;
        font-weight: 700;
    }

    .box_sub_album_text>ul>li {
        padding: 0.2rem 1rem;
        font-size: 15px;
        font-weight: 500;
    }

    .box_sub_album_main_img>.sub_album_btn {
        gap: 1rem;
    }

    .box_sub_album_main_img>.sub_album_btn>button {
        padding: 0.6rem 1.2rem;
    }

    .box_sub_album_main_img>.sub_album_btn>button>a {
        font-size: 14px;
        font-weight: 650;
    }

    .box_sub_album_main_img>.sub_album_btn>button:hover {
        border-radius: 18px 7px 18px 7px;
    }
}

@media (max-width: 700px) {
    .block_sub_album {
        padding: 4rem 4rem;
    }
    .album_btn_back {
        margin: 1.5rem 0 0 2.5rem;
        padding: 0.5rem 1.1rem;
    }

    .box_sub_album {
        gap: 2rem;
        flex-direction: column;
    }
}