*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}



.main
{
    width: 100%;
    height: 100vh;
    background-color: grey;
    position: absolute;
}

.header{
    width: 100%;
    height: 8vh;
    background-color: #f9f267;;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

}


.books_container{
    width: 100%;
    height: 90vh;
    background-color: rgb(247 248 248);
    position: relative;
    /* left: 70px; */
    top: 10px;
    font-family: 'Merriweather', serif;

}

.book_name{
    width: 100%;
    height: 50px;
    background-color: rgb(0 89 89);
    font-size: 30px;
    font-weight: 550;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
}

.books{
    width: 100%;
    height: 530px;
    /* background-color: #fbdd64; */
    display: flex;
    justify-content: space-around;
}

.book_1{
    width: 313px;
    height: 530px;
    border: 2px dotted rgb(21, 123, 123);
}

.ukg_book{ 
    width: 300px;
    height: 50px;
    background-color: #fff;
    display: flex;
    text-align: center;
    align-items: center;
    padding-left: 20px;
    margin: 8px;
}

.ukg_book a{
    font-size: 14px;
    font-family: 'Merriweather', serif;
}

.ukg_book a:hover 
{
 color:#12b12d;
 text-decoration: none;
}

.Nursury_h2{
    color: rgb(255, 255, 255);
    width: 300px;
    height: 50px;
    background-color: #005959;
margin-left: 8px;
display: flex;
justify-content: center;
align-items: center;
}
.book_link{
margin-left: 30px;
}

/* ***************@media Queries Start**************** */




/* 

@media (min-width: 576px) and (max-width:767px)
{

.Nursury_h2{
width: 100px;
background-color: red;
}

.ukg_book{
    width: 100px;
}
.book_1
{
    width: 100px;
    border: none;
}
.ukg_book a{
    font-size: 12px;
}

} */


@media (min-width: 0px) and (max-width: 575px)
{
    .books_container{
        display: none;
    }
    .header{
        display: none;
    }
    #button_ul a{
        color: rgb(11, 70, 235);
        padding-left: 10px;

    }
    #button_ul {
      background-color: #005959;
    }
}

@media (min-width: 575px) and (max-width: 1400px)
{
   .container{
    display: none;
   }
}


    
    @media (min-width: 768px) and (max-width: 992px)
    
    {
        .ukg_book{
            width: 247px;
            height: 50px;
            background-color: rgb(255, 255, 255);
            margin: 5px;
            overflow: scroll;   
        }
        .books_container{
            width: 100%;
        }
       .Nursury_h2{
        width: 243px;
       }
    }
 


 
 