@import url("https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400;1,700;1,900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Source+Sans+Pro:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700;1,900&display=swap");

* {
  margin: 0;
}

body {
  font-family: Arial, Verdana, Helvetica, sans-serif;
  font-size: 68.8%;
  background: url(./src/bg3.jpg) no-repeat center center fixed;
  background-size: cover;
}

.main {
  margin: 0 auto;
  width: 1000px;
  background: #222;
}

header {
  display: flex;
  align-items: center;
  background: #222;
}

.logo > img {
  height: 55px;
  width: auto;
  padding: 10px;
}

nav > ul,
footer > ul,
.slider_content > ul {
  list-style-type: none;
  padding: 0;
}

nav > ul > li,
footer > ul > li {
  display: inline;
}

nav > ul > li {
  border-left: 1px solid #434343;
  float: left;
}

nav > ul > li > a {
  color: inherit;
  padding: 0 10px 0 10px;
  font-family: Georgia, "Times New Roman", Times, serif;
  text-decoration: none;
  text-transform: uppercase;
  display: block;
}

nav {
  color: #808080;
}

nav > ul > li > a.current {
  color: white;
}

nav > ul > li > a:hover {
  color: white;
}

footer {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #222;
  border-top: 1px solid #434343;
  padding: 10px 0 10px 0;
}

footer > ul > li:not(:first-child)::before {
  content: "•";
  color: #666;
  padding: 0 10px 0 9px;
}

footer > ul > li > a {
  text-decoration: none;
  color: #666;
}

footer > ul > li > a:hover {
  color: white;
  transition: 200ms;
}

.section {
  padding: 20px 20px 20px 20px;
  display: flex;
  flex-direction: column;
  background: rgb(22, 22, 22);
}

.section > h1 {
  align-self: flex-start;
  text-transform: uppercase;
  color: white;
  padding: 0 0 5px 0;
  border-bottom: 2px solid white;
  margin-bottom: 15px;
  font-family: "Merriweather", serif;
  font-weight: normal;
}

.section > p {
  color: white;
  font-size: larger;
  margin-bottom: 15px;
}

.sub-section {
  color: white;
}

.sub-section:not(:last-child) {
  margin-bottom: 15px;
}

.sub-section > h1 {
  text-transform: uppercase;
  font-size: medium;
  margin-bottom: 5px;
}

.sub-section > p {
  font-size: 1.2em;
}
