```html
body {
fontfamily: Arial, sansserif;
lineheight: 1.6;
margin: 20px;
}
h1 {
textalign: center;
}
.emojigrid {
display: grid;
gridtemplatecolumns: repeat(autofit, minmax(200px, 1fr));
gridgap: 20px;
justifyitems: center;
margintop: 20px;
}
.emoji {
width: 150px;
height: 150px;
objectfit: cover;
borderradius: 50%;
boxshadow: 0 0 10px rgba(0, 0, 0, 0.1);
transition: transform 0.3s easeinout;
}
.emoji:hover {
transform: scale(1.1);
}