/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */

body {
  margin: 0;
  background-color: #edcb9f;
  color: DarkRed;
  font-family: 'Times New Roman';
}

/* unvisited link */
a:link {
  color: #913b40;
}

/* visited link */
a:visited {
  color: #7d1f24;
}

/* mouse over link */
a:hover {
  color: #6e262a;
}

/* selected link */
a:active {
  color: #61383a;
}

h1 {
  margin-top: 20px;
  margin-bottom: 10px;
  padding: 0 40px;
}
p {
  margin-bottom: 20px;
  padding: 0 40px;
}

.centered {
  text-align: center;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 80px;
  background-color: BurlyWood;
  width: 90%;
  padding: 40px 40px;
  margin: 20px auto;
  font-size: 30px;
  position: relative;
}

.topbar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 30px;
  background-image: url("Hvines.png");
  background-repeat: repeat-x;
  z-index: 4;
  background-size: auto 30px;
}

.topbar::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 30px; 
background-image: url("Hvines.png");
  background-repeat: repeat-x;
   z-index: 4;
  background-size: auto 30px;
}

