html{
    /* font-family: 'Times New Roman', Times, serif; */
    /* font-family: 'Courier New', Courier, monospace; hame acchi na lagi */
    /* font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif; */
    /* font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif; */
    /* font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif; */
    /* font-family: Impact, Haettenschweiler, 'Arial Narrow Bold', sans-serif; */
    /* font-family: Verdana, Geneva, Tahoma, sans-serif; */
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.header{
    /* background-image: url(img/allChess.jpeg);
    background-size: cover; 
    background-position: center;
    background-repeat: no-repeat;  */
    box-sizing: border-box;
    height: 12%;
    width: 100%;
    /* border:2px solid black ; */
    margin: auto;
    display: flex;
}
.imageall{
    width: 50%;
    float:right;
}
#header{
    width:50%;
    /* float:left; */
    padding: 6em;
    padding-left: 1em;
}

h1{
    text-align: center;
}
h2{
    text-align: center;
    margin-top: 2em;
    margin-bottom: 2em;
}

p{
    text-align: center;
}
.contanior{
    width: 100%;
    height: auto;
    display: flex;
    flex-direction: row;
    /* margin: 0px; */
    margin-left: 1em;
}
.itemImg{
    height: 13em;
    width: 15em;
    display: inline;
}
.itemPara{
    display: inline-block;
    height: 12em;
    width: auto;
    line-height: 1.5;
    text-align: left;
    padding: 2em;
    padding-top: 0px;
    word-spacing: 1.3;
    color: black;
    justify-content: center;
    
}

.item{
    /* background-color:purple; */
    display: flex;
    /* margin: 1em; */
    flex-direction: row;
    padding: 2em;
    margin-top: 1.5em;
    margin-bottom: 1.5em;
    margin-left: auto;
    margin-right: auto;
    /* border: 1px solid black; */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    border-radius: 3em;
    width: 70%;
}
.contentImg{
    height: 27em;
    width: 40%;
    float: left;
}
.paraContent{
    height: 27em;
    width: 60%;
    float: right;
}
@media(max-width:500px){
    .header{
        flex-direction: column;
    }
    #header{
        width: 100%;
        height: auto;
        margin:auto;
        padding: 1em;
    }
    .item{
        flex-direction: column;
        width: 100%;
        height: 28em;
        align-items: center;
        justify-content: center;
    }
    .contentImg{
        height: 30%;
        width: 30%;
    }
    .paraContent{
        height: auto;
    }
    
    .contanior{
        margin:auto;
    }
    .itemPara{
        height: 5em;
    }
    .imageall{
        height: 50%;
        width: 100%;
    }
}