/* 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; 
}

p {
  color: white;
}

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

.responsive {
  max-width: 100%;
  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: 20px 50px 50px 0px;
  text-decoration: none;
  font-size: 4.25vw;
 
}




