.check-btn {
  border: 2px solid #ffffff;
  background-color: #e6d7f2;
  width: 80px;
  height: 80px;
  border-radius: 100%;

  display: flex;
  justify-content: center;
  align-items: center;

  color: #7e4fb8;
  font-size: 20px;
  font-weight: bold;

  box-shadow: -5px 4px 8px #7e4fb8;
  transition: transform 0.2s ease-in-out;
}

.check-btn:hover {
  cursor: pointer;
  transform: scale(1.05);
}
