@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&display=swap');

/* Gradient background from #0a011f to #01041f */
body {
  background: linear-gradient(160deg, #0a011f, #01041f);
  font-family: "Quicksand", sans-serif;
  font-style: normal;
  color: #eee; /* light text color for contrast */
  margin: 0;
  padding: 0;
}

/* Class for rounded border + light opacity background fill */
.rounded-light-bg {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  padding: 10px;
  text-align: center;
}

