html {
  height: 100%;
}

body {
  border: none;
  display: flex;
  flex-direction: column;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
}

@font-face {
  font-family: 'Omnes';
  src: url('fonts/Omnes-Regular.ttf') format('truetype'),
}

@font-face {
  font-family: 'Omnes Medium';
  src: url('fonts/Omnes-Medium.ttf') format('truetype'),
}

@font-face {
  font-family: 'Omnes SemiBold';
  src: url('fonts/Omnes-SemiBold.ttf') format('truetype'),
}

@font-face {
  font-family: 'Omnes Black';
  src: url('fonts/Omnes-Black.ttf') format('truetype'),
}

ul.styled-list {
  list-style: none; /* Remove default bullets */
  padding-left: 0;  /* Remove default padding */
}

ul.styled-list li {
  position: relative;
  padding-left: 1.5em; /* Space for custom bullet */
  margin-bottom: 1em;  /* Spacing between items */
  font-family: 'Arial', sans-serif;
  font-size: 1.1em;
  color: #555; /* Soft black/dark gray */
}

ul.styled-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: #FFA500; /* Orange bullet */
  font-size: 1.5em;
  line-height: 1;
}
