*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}
header{
    width: 100%;
    height: 100px;
    background-color: yellow;
    display: flex;
    justify-content: center;
    align-items: center;
}
.head-title{
font-size: 3rem;
font-weight:bold;
color: black;
}
.things-list{
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}

.things{
    display: flex;
    flex-direction: column;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
    width: 250px;
    height:385px;
    margin: 22px;
}
.things-img{
    margin: 1rem;
    display: flex;
    justify-content: center;
}
.img{
    width: 190px;
    height: 190px;
}
.things-names{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.name{
    font-weight: 600;
    font-size: 20px;
    padding-top: 5px;
}
.tamil{
    font-family:Bamini;
    font-weight: 600;
    font-size: 20px;
    padding-top: 5px;
}
.price{
    font-weight: 600;
    font-size: 18px;
    padding-top: 5px;
}
.kg{
    font-weight: 600;
    font-size: 15px;
    padding-top: 5px;
}
footer{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color:rgb(238, 255, 0);
}
a{
    padding: 20px;
}
i{
    color:black;
    font-size: 1.8rem;
}

.button{
    display: flex;
 justify-content: center;
 align-items: center;
 padding: 20px 0px;
 gap: 20px;
}
button{
    background-color: rgb(255, 0, 0);
    color: white;
    font-size: 20px;
    border:none;
    padding: 5px;
    
}
button:hover{
background-color: rgb(6, 235, 6);
cursor: pointer;
}
.button button a{
    padding: 0px;
    text-decoration: none;
    color: white;
}
