* {
  box-sizing: border-box;
}
    
  body {
  background-image: url();
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-color: #645541;
  background-position: center center;
  background-size: 100%;
  overflow: scroll;
  } 
  
/* Style the header */
.header {
  background-color: #442916;
  height: 325px;
  width: 1200px;
  background-position: center center;
  overflow: hidden;
}

/* Style the top navigation bar */
#topnav {
  width: 1200px;
  height: 75px;
  top: 20px;
  text-align: center;
  z-index: 2;
  overflow: hidden
}

/* Style the navigation menu */
#navbar {
  position: relative;
  width: 1038px;
  height: 75px;
  background-position: center center;
  background-image: url(../img/fp-banner.png);
  overflow: auto;
  z-index:3;
}

/* Navigation links */
#navbar a {
  float: right;
  padding-top:28px;
  color: #fdfdfd;
  text-decoration: none;
  font-size: 20px;
  width: 11%; /* Four equal-width links. If you have two links, use 50%, and 33.33% for three links, etc.. */
  text-align: center; /* If you want the text to be centered */
}

/* Add a background color on mouse-over */
#navbar a:hover {
  background-color: #555;
}

/* Style the current/active link */
#navbar a.active {
  background-color: #004443;
}

/* Add responsiveness - on screens less than 500px, make the navigation links appear on top of each other, instead of next to each other */
@media screen and (max-width: 500px) {
  .navbar a {
    float: none;
    display: block;
    width: 100%;
    text-align: center; /* If you want the text to be left-aligned on small screens */
  }
}
/* Create three unequal columns that floats next to each other */
.column {
  float: left;
  padding: 5px;
}

/* Left and right column */
.column.side {
  width: 1%;
}

/* Middle column */
.column.middle {
  width: 98%;
}

/* Clear floats after the columns */
.row::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive layout - makes the three columns stack on top of each other instead of next to each other */
@media screen and (max-width: 600px) {
  .column.side, .column.middle {
    width: 100%;
  }
}

/* Style the footer */
.footer {
  background-color: #EDEBD2;
  margin-bottom:10px;
  padding: 5px;
  text-align: center;
}

.goudy-bookletter-1911-regular {
  font-family: "Goudy Bookletter 1911", serif;
  font-weight: 400;
  font-style: normal;
}

