#circle {
  width: 100px;
  height: 100px;
  background-color: #3498db;
  border-radius: 50%;
  margin: 50px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: white;
  cursor: pointer;
  overflow: hidden;
}
#circle img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body {
  text-align: center;
  font-family: Arial, sans-serif;
}
