/* add for the div container a display:grid with 10 columns, with a gap of 5px between the cells */

.container {
  display: grid;
  grid-template-columns: repeat(10, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}

.container>div {
  background-color: #0088cc;
  color: white;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: bold;
  font-family: Arial, sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.container>div:hover {
  background-color: #006ba3;
  transform: scale(1.1);
}

body {
  background-color: #f5f5f5;
  margin: 0;
  padding: 20px;
}