/* Standard reset of browser defaults */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    /* border: 5px solid blue; */
}
header {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    background-color: rgb(43, 10, 10);
    padding: 15px 0;
    /* border: solid 5px red; */
}
header .responsiveHeader {
    width: 100%;
    height: auto;
    max-width: 700px;
    max-height: 70px;
    padding: 0 8px;
}
nav {
    width: 100%;
    background-color: black;
    /* border-top: rgb(225, 185, 123) solid 2px; */
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}
nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    align-items: center;
}

nav ul li {
  display: inline-block;
  /* position: relative; */
  position: relative;
}
nav ul li a {
  display: block;
  color: rgb(225, 185, 123);
  text-decoration: none;
  text-align: center;
  font-size: 1rem;
  padding: 8px 12px;
}
nav a.active {
    color: black;
    background-color: rgb(225, 185, 123);
}
nav a:hover {
    background-color: rgb(255, 233, 148);
    color: black;
}
section {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
    width: 100%;
    padding: 15px 0;
    /* border: solid 5px purple; */
}
section .responsive {
    width: 100%;
    height: auto;
    padding: 0 20px;
}
footer {
    text-align: right;
    color: white;
    font-size: 0.7rem;
    background-color: black;
    width: 100%;
    height: auto;
    padding: 4px 20px;
    /* border: solid 5px yellow; */
}

ul li ul.dropdown li {
  display: block;
  padding: 2px;
  margin: 0;
  background-color: black;
  width: 200px;
}
ul li ul.dropdown li a {
  padding: 5px;
}
ul li ul.dropdown {
  width: 100%;
  position: absolute;
  padding: 0;
  display: none;
}
ul li:hover ul.dropdown {
  display: flex;
  flex-direction: column;
  align-items: end;
}




