.B-container {
  display: flex;
  justify-content: center;
  align-items: center;
}

.button-1 {
  background-color: #fff;
  border: none;
  border-radius: 1.5rem;
  color: #0d172a;
  cursor: pointer;
  font-family: "Basier circle", -apple-system, system-ui, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
  text-align: center;
  text-decoration: none;
  transition: all 0.1s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0px 1px 2px rgba(166, 175, 195, 0.25);
  user-select: none;
}


.button-1:hover {
  background-color: #1e293b;
  color: #fff;
}

@media (min-width: 768px) {
  .button-1 {
    font-size: 1.125rem;
    padding: 0.5rem 1rem;
  }
}