/* Responsive design - adjust layout for smaller screens */
.bold {
  font-weight: bolder;
}

.highlight-green {
  color: #00ff91;
}

.highlight-orange {
  color: #ffbb00;
}

.highlight-blue {
  color: #00bfff;
}

.highlight-red {
  color: #ef8080;
}

/* Reset default browser styles */
body, h1, h2, h3, p, ul, ol, li {
  margin: 0;
  padding: 0;
  font-family: "Libre Franklin", "Helvetica Neue", helvetica, arial, sans-serif;
}

/* Set a default font family and size */
body {
  font-family: Arial, sans-serif;
  background-color: rgb(60, 60, 60);
  color: rgb(217, 217, 217);
}

div {
  width: 100%;
}

/* Style for headings */
h1 {
  font-size: 36px;
  margin-bottom: 20px;
  margin-top: 10px;
}

h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

/* Basic styling for paragraphs */
p {
  margin-block-end: 15px;
  margin-block-start: 15px;
}

/* Style for links */
a {
  color: rgb(175, 175, 175);
  text-decoration: none;
}
a:hover {
  color: rgb(232, 232, 232);
  text-decoration: underline; /* Underline links on hover */
}

/* Style for lists */
ul, ol {
  margin-bottom: 15px;
}

/* Style for list items */
li {
  margin-bottom: 5px;
}

/* Add a border to images */
img {
  max-width: 100%; /* Make images responsive */
}

/* Optional: Add some basic styling to the table */
table {
  border-collapse: collapse;
  width: 100%;
  background-color: rgb(53, 53, 53);
  margin: 1.5em auto;
  table-layout: fixed;
  display: table;
}

th, td {
  border: 2px solid black;
  text-align: left;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  display: table-cell;
}

tr {
  box-shadow: 1px 2px 2px 1px rgba(0, 0, 0, 0.12), 1px 2px 2px 1px rgba(0, 0, 0, 0.24);
}

td {
  background-color: rgb(55, 55, 55);
  font-size: 1em;
}

th {
  border: 0.125em solid rgb(0, 0, 0);
  background-color: rgb(65, 65, 65);
  font-size: 1.1em;
  font-weight: 400;
  box-shadow: none;
  font-weight: bold;
}

table td:nth-of-type(1), th:nth-of-type(1) {
  min-width: auto;
}

@media only screen and (max-width: 600px) {
  body {
    font-size: 16px;
  }
}
/* Medium screens (tablets) */
@media only screen and (min-width: 601px) {
  body {
    font-size: 16px;
  }
}
/* Large screens (desktops) */
@media only screen and (min-width: 1024px) {
  body {
    font-size: 16px;
  }
}/*# sourceMappingURL=elements.css.map */