body {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background-image: url('sparkles.jpg');
  background-size: cover;
  background-position: center;
  flex-direction: column;
}
.container {
  display: grid;
  grid-template-columns: 33% 33% 33%;
  grid-template-rows: 50% 50%;
  gap: 16px;
  align-items: center;
}

.container img {
  width: 300px;
  height: 300px;
  display: block;
  object-fit: cover;
  border: 5px solid #1a5893;
  border-radius: 10px;
}

.box {
  background-color: #ffafcc;
  text-align: center;
  border: #1a5893 solid 5px;
  border-radius: 10px;
  color: #653183;
}