/* CSS */
.btn-minimal_v2 {
  background-color: #000;
  color: #eeeeee;
  padding: 3px;
  font-family: "Zen Dots", sans-serif;
  font-size: 12px;
  font-weight: 200;
  text-align: center;
  letter-spacing: 0.2em;
  border: none;
  border-radius: 20%;
  width:100px;
  height:100px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin:15px;
}

/* Hover State */
.btn-minimal:hover {
  background-color: #0056b3; /* Darker blue */
}
