html
{
        height:100%;
}
body
{
 background-attachment:fixed;
 background-repeat: no-repeat;
 background-position:center;
 background-size:100% 100%;
 overflow:hidden;
 user-select:none;
  /* height:100%; */
}
.noPadding{
    padding: 0% !important;
}
header{
    width: 100%;
   /*  position: fixed; */
    height: 80px;
    background-color: #ccf5ea ;
}
#imageId{
    height: 70px;
    width: 70px;
    /* position: absolute; */
}
.headingClass{
    font-size: 30px;
    font-weight: bold;
    color: black;
    justify-content: center;
    align-items: center;
    display: flex;
}
#searchbar{
    height: 50px;
    width: 40vw;
    margin-left: 12vw;
    border: 0.5px solid black;
    color: black;
    background-color: rgba(211, 211, 211, 0.342);
}
#searchPart{
    width: 70%;
    margin-left: 15%;
}
footer{
    position:absolute;
    bottom:0%;
    width:100%;
    background-color: #ccf5ea;
    height: 60px;
    color: black;
    font-weight: bold;
    font-size: 18px;
}

@media (max-width: 576px) { 
    .headingClass{
        font-size: 16px;
    }
    #imageId{
        height: 50px;
        width: 50px;
        margin-top: 10px;
        /* position: absolute; */
    }
    footer{
        font-size: 12px;
    }
    #searchbar{
        height: 40px;
        width: 50vw;
        margin-right: 5vw;
        margin-left: 0;
    }
}