* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

main {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  gap: 10px;    
}

main div {
  background-color: rgb(223, 222, 222);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  width: 150px;
  box-shadow: 10px 5px 5px rgb(146, 145, 145);
}

main div img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  margin-bottom: 10px;
}

main div span {
  font-size: 1.1rem;
  font-weight: bold;
}
