.styled-button {
  background-color: var(--accent);
  border: none;
  border-radius: 4px;
  color: white;

  transition: all 0.2s;
}

.styled-button:hover {
  background-color: rgb(0, 196, 81);
}
