:root {
  --primary-color: #193a56;
  --secondary-color: #0169b4;
  --border-radius-custom: 10px;
}

body {
  font-family: "Apex New", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  background: radial-gradient(
    circle at top right,
    var(--secondary-color),
    var(--primary-color)
  );
  min-height: 100vh;
}
