
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #BFCBEE;
  color: #444;
}


a {
  text-decoration: none;
}

header div{
  
  background-color: #5c71ad;
  color: white;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


.joe2 {
  display:flex;
  justify-content: end;
}

header div h1 {
  margin:  0 50px;
  font-size: 2em;
}

header nav {
  display: none;
}

ul {
  list-style-type: none;
}

header button {
  margin:  0 50px;
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1.5em;
  justify-content: right  ;
  display: flex;
  transition: color ease  .2s;
}


header button {
  order: 2;
}

header button:hover {
  cursor: pointer;
  color: black;
  transition: color ease  .2s;
}



header nav ul {
  position: absolute;
  left: 0;
  right: 0; 
  transform: translate(0, -20px);
  background-color: #BFCBEE;
  padding: 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

header nav li {
  margin: 10px 0;
}

header nav li a {
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  transition: color 0.2s;
}

header nav li a:hover {
  color: #5c71ad;
}

/* Hero Section Styles */
#hero {
  background-image: url('beaver-dam.webp');
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 100px 0;
}

h2 {
  margin: 0;
  font-size: 3em;
  text-shadow: 2px 2px #000;
  color: white;
}

/* Main Section Styles */
.not-hero {
  margin: 0 50px;
}

.not-hero h2 {color: white;}

section {
  margin-bottom: 50px;
}

section h2 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

section p {
  font-size: 1.2em;
  line-height: 1.5;
  color: #444;
}

#hero p {
  color: white;
  text-shadow: 2px 2px #000; ;
}

/* Footer Styles */
footer {
  background-color: #5c71ad;
  color: white;
  text-align: center;
  padding: 10px;
}


