.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  line-height: 1;
  padding: 10px 20px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 400;
  transition: all 0.3s;
  cursor: pointer;
}

.btn-primary {
  background: rgb(46, 108, 208);
  color: white;
}
.btn-primary:hover {
  background: #0071e3;
}

.btn-secondary {
  border: 2px solid rgb(46, 108, 208);
  color: rgb(46, 108, 208);
}
.btn-secondary:hover {
  background: rgb(46, 108, 208);
  color: white;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;

  padding-top: 1rem;
}
