.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 10px;
  border: 0;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.btn.primary {
  background: var(--primary-blue);
  color: #fff;
}
.btn.primary:hover {
  transform: scale(1.03);
  box-shadow: 0 0 0 0 rgba(0, 255, 255, 0), 0 0 16px 4px rgba(0, 255, 255, 0.35);
}
.logo {
  font-weight: 700;
}
