body{
    margin: 0px;
    padding: 0px;
}
.header{
    position: fixed;
    background: #e1e1e1;
    padding: 10px 0px 10px 0px ;
    width: 100%;
    display: flex;
    align-items: center;
    z-index: 1;
    top: 0;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
}
.header img{
    width: 70px;
    border-radius: 6px;
    margin-left: 10px;
}
.header .searchbar{
    display: flex;
    width: 80%;
    margin: auto;
    /* margin-right: 10px; */
    height: 50px;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    padding: 0px 10px 0px 10px;
    background: white;
    border-radius: 5px;
}
.header .searchbar input{
    width: 100%;
    border: none;
    outline: 0;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.header .searchbar button{
    border: none;
    background: transparent;
    font-size: 18px;
}
.main{
    margin-top: 100px;
    background: rgb(255, 255, 255);
    padding: 10px;
}
.main .banner {
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
    animation: popup 1000ms ;
    /* transition: 600ms; */
}
@keyframes popup {
    0%{
        opacity: 0;
    }
    100%{
        opacity: 100;

    }
}
.main a{
    text-decoration: none;
    color: black;
}
.main .banner img{
    width: 100%;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
}
.main .banner h2{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin-top: 8px ;
    margin-bottom: 1px;
    padding: 10px;
}
.main .banner p{
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    font-weight: 600;
    margin-top: 0px ;
    margin-bottom: 5px;
    padding: 10px 10px 20px 10px ;
}
.more{
    /* background: red; */
    /* padding: 50px; */
}
.firstrow{
    /* background: rgb(119, 55, 55); */
    padding: 10px;
    overflow-x: scroll;
    display: flex;
}
.firstrow a{
    text-decoration: none;
    color: black;
}
.firstrow img{
    width: 100%;
}
.toons{
    width: 280px;
    margin: 0px 10px 0px 10px ;
    box-shadow: 0 1px 6px rgba(32,33,36,.28);
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}
.toons h2{
    padding: 10px 10px 0px 10px;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
.toons p{
    padding: 0px 10px 20px 10px;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}