/* header */

.navbar {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  top: 0; /* Position the navbar at the top of the page */
  left: 0;
  width: 100%; /* Full width */
}

/* Links inside the navbar */
.navbar a {
  float: right;
  color: #818181;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 700;
  font-size: 4.25vw;
  text-align: center;
  padding: 14px 15px;
  text-decoration: none;
}
.navbar img {
    float: left; 
    padding: 25px 15px;
    max-width: 35%;
    height: auto;
}


/* Main content */

body {background-color: black;}

.page {
  margin-top: 60px; /* Add a top margin to avoid content overlay */
  margin-bottom: 70px; 
}

h1 {
    color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: lighter;
    font-style: oblique;
    font-size: 8vw;
    padding: 70px 0px 0px;
}

.title {
  text-align: center;
}

.toc{
  max-width: fit-content;
  margin-inline: auto;
}

p {
  color: white;
  font-family: Arial, Helvetica, sans-serif;
  
  text-align: left;
}

a {
    color: crimson;
    font-family: Arial, Helvetica, sans-serif;
    font-weight:normal; 
    font-style: bold;
    font-size: 4vw;
    padding: 70px 0px 0px;
    }

a:hover {
  color:white;
}

/* selected link */
a:active {
  color:red;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}


img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  
}

.responsive {
  max-width: 80%;
  height: auto;
}

/* footer */

.footer {
  overflow: hidden;
  background-color: #333;
  position: fixed; /* Set the navbar to fixed position */
  bottom: 0; /* Position the navbar at the top of the page */
  left:  0px;
  width: 100%; /* Full width */
  text-align: center;
  padding: 10px 0;
 
}

/* Links inside the navbar */
.footer a {
  color: #818181;
  padding: 14px 50px;
  text-decoration: none;
  font-size: 4.25vw;
}




