.disney{
    display: flex;
    align-items: center;
    justify-content: center;
}

.disney img{
    height: 8vh;
}

.banner{
    display: flex;
    background-color: black;
    padding: 0 5vw;
}

.bannertitle{
    font-size: 30px;
    font-weight: bold;
}

.bannertxt{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bannerbtn{
    display: flex;
    gap: 10px;
}

.btn{
    background-color: red;
    font-weight: bold;
    padding: 2vh 2vw;
}

.unlimitedsection{
    display: flex;
}

.unlimitedbanner{
    background-image: url("https://res.cloudinary.com/dre3wdpfu/image/upload/v1761132815/Screenshot_2025-10-22_170316_gupvbd.png");
    background-size: contain;
    background-repeat: no-repeat;
    width: 50%;
}

.unlimitedtxt{
    background-color: #151515;
    width: 50%;
    padding: 4vh 5vw;
}

.unlimitedbtn{
    background-color: 151515;
    border: 1px white solid;
    font-weight: bold;
    padding: 2vh 2vw;
    width: 200px;
}

.comics{
    display: flex;
    gap: 20px;
    padding: 5vh 5vw;
    background-color: white;
    overflow-x: auto;
}

.comicimg{
    height: 40vh;
}

.title{
    color: black;
    font-weight: bold;
}

.year{
    color: gray;
    font-weight: bold;            
}

.news{
    display: flex;
    padding: 5vh 5vw;
    gap: 100px;
    background-color: white;
}

.col1{
    width: 30%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.col2{
    width: 70%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.new{
    display: flex;
    gap: 20px;
}

.newtxt{
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.genre{
    color: gray;
    font-weight: bold;
}

.headline{
    color: black;
    font-weight: bold;
}
@media screen and (max-width: 576px) {


    .banner{
        flex-direction: column-reverse;
    }

    .disney{
        font-size: 12px;
    }

    .unlimitedbanner{
        display: none;
    }

    .unlimitedtxt{
        width: 100%;
    }

    .news{
        flex-direction: column;
    }

    .col1{
        width: 100%;
    }

    .col2{
        width: 100%;
    }

    .col2 .new{
        flex-direction: column;
    }
}