*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
}
body{
    background: linear-gradient(to right, #9087da, #c9c5ee, #8e8eec);
}
.container h1{
  position: absolute;
  top: 20px;
  right: 50px;
  background-color: #c9c5ee;
  box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
  padding: 10px;
  border-radius: 5px;
}


.grid{
    display: flex;
    flex-wrap: wrap;
    height: 360px;
    width: 480px;

}
.grid img{
    width: 120px;
    height: 120px;
    cursor: pointer;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}