html {
  background-color: white;
  font-size: 175%;
  text-align: center;
  border-right: 3px solid black;
  border-left: 3px solid black;
  border-bottom: 3px solid black;
  margin: 5px;
}

h1 {
  color: rgb(0, 60, 0);
  font-size: 150%;
  margin-top: 0px;
  margin-bottom: 0px;
}

h2 {
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 100%;
}

h3 {
  margin-bottom: 5px;
  margin-top: 5px;
}

h5 {
  margin-bottom: 5px;
  margin-top: 5px;
}

p {
  margin-bottom: 5px;
  margin-top: 5px;
  font-size: 70%;
}

/* NAV BAR CONTAINER */
nav {
  display: flex;
  background-color: rgb(0, 60, 0);
  height: 50px;
  position: relative;
}

/* MAIN NAV BUTTONS */
nav>.nav-item {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-decoration: none;
  position: relative;
  cursor: pointer;
  border: 1px, solid, black;
}

nav>.nav-item:hover {
  background-color: rgb(0, 120, 0);
}

/* DROPDOWN MENU STYLES */
.dropdown-content {
  display: none;
  position: absolute;
  top: 49px;
  left: 0;
  background-color: rgb(0, 60, 0);
  width: 100%;
  z-index: 1;
  flex-direction: column;
}

.dropdown-content a {
  padding: 12px;
  color: white;
  text-decoration: none;
  text-align: center;
}

.dropdown-content a:hover {
  background-color: rgb(0, 120, 0);
}

/* SHOW DROPDOWN ON HOVER */
.dropdown:hover .dropdown-content {
  display: flex;
}