.HomePage 
{
    width: 60px;
    height: 60 px;
    background-color: yellowgreen;
    border: 3px solid firebrick;
    border-radius: 30 px;
    font-weight: bold;
    color: black;
    cursor: pointer;
}
.HomePage:
hover 
{
 background-color: lightblue;}

img { width:300px;
    height: 600 px;
    border:4px;
    border-color:black;
}
body { background-color: lightblue;
    margin:20px;
    padding:10px;
}

.wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
   grid-auto-rows: minmax(100px, auto);
}

