/* styles.css */
@font-face {
  font-family: 'Rodin NTLG';
  src: url('fonts/RodinNTLG.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
}

/* Apply the font to your page */
body {
  font-family: 'Rodin NTLG', sans-serif;
  background-color: white;
  color: gray; /* White text */
  display: flex;
  text-align: center;
  flex-direction: column; /* stack content vertically */
  overflow-x: hidden; /* no horizontal scrolling */
  margin: 0; /* remove default margin */
  padding: 20px; /* add a bit of space around text */
}

h1, p {
  margin: 10px 0; /* vertical spacing */
  display: block; /* block elements stack by default */
}
