/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

@font-face {
    font-family: 'Syne Mono';
    src: url('Fonts/Syne Mono/SyneMono-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Texturina';
    src: url('Fonts/Texturina/Texturina-VariableFont_opsz,wght.ttf') format('truetype');
}

body {
  background-color:  #0C0014;
  color: #D9D9D9;
  font-family: "Texturina", sans-serif;
  font-weight: normal;
  font-style: normal;
  font-size: 16px;
  text-align: center;
}

a {
    color: red;
}

h1 {
  font-family: "Syne Mono", sans-serif;
  font-size: 48px; /* Large */
}

h2 {
  font-family: "Syne Mono", sans-serif;
  font-size: 36px; /* Medium-Large */
}

h3 {
  font-family: "Syne Mono", sans-serif;
  font-size: 28px; /* Medium */
}

h4 {
  font-family: "Syne Mono", sans-serif;
  font-size: 22px; /* Smaller */
}

h5 {
  font-family: "Syne Mono", sans-serif;
  font-size: 18px; /* Even smaller */
}

h6 {
  font-family: "Syne Mono", sans-serif;
  font-size: 14px; /* Smallest */
}

table {
  width: 80%; /* Optional: set the width of the table */
  margin: 0 auto; /* Centers the table horizontally */
}


th, td {
  padding: 10px; /* Adds padding inside cells */
  text-align: center; /* Optional: center-aligns text inside cells */
}