body {
  margin: 0;
  font-family: 'Canela Deck', sans-serif;
  background-color: #121212;
  color: #e0e0e0;
}

.circle {
  width: 200px;
  height: 200px;
  background-color: #a7abde;
  border-radius: 50%;
  transition: all 600ms;
  filter: blur(2px);
}

.circle:hover {
  transform: scale(1.1);
}

.center {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

h1 {
  text-align: center;
  margin-bottom: 10px;
}

#result {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
}

p {
  font-style: italic;
  font-size: 15px;
  margin-bottom: 40px;
}
