html, body {
  margin: 0;
  height: 100%;
}


body {
    font-family:'Courier New', Courier, monospace;
    background-image: url("images/glowstars.jpg");
}


mark {
    background-color: #6eeeb083;
}

.container {
  display: flex;
  width: 100%;
  align-items: center; /* vertical centering */
  justify-content: center; /* horizontal centering overall */
  gap: 40px; /* space between the two divs */
  padding: 40px;
}

.banner {
  width: 300px;                /* fixed width or % */

  background-image: url("images/dogs.jpg");
  background-size: cover;      /* zoom to fill */
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;              /* keep size from shrinking */
  align-self: stretch; /* stretch to match flex container height */

  border: #000000 solid 3px; /* border around the image */
  box-shadow: #67f784cb 0px 0px 5px; /* glow effect */
} 


/* INTRO BOX */
.textdump {
  width: 60%;
  border: 3px solid #042187; 
  border-radius: 3px; 
  color: #000000; 
  font-size: medium;
  background-image: url("images/paper.jpg");
  background-size: cover; 
  background-position: center;
  padding: 20px;
}

.signature {
  width: 30%;
  height: auto;
}


.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #042187;
  color: #fff;
  display: flex;
  gap: 30px;
  padding: 16px 60px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.407);
  z-index: 1000;
  font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

.navbar a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.navbar a:hover {
  color: #67f784;
}

body {
  padding-top: 60px; 
}
