*{
  box-sizing: border-box;
}

body {
  margin: 0;
  padding: 0;

  overflow-y: hidden;
  background-color: #821200;
}

h1{
  color: #FF7F27;
  font-family: 'Cinzel', serif;

  text-align: center;
}

h2{
  font-size: 4rem;
  font-family: 'Cinzel', serif;

  color:#821200;

  text-decoration: underline;

  margin: 0;
}

h3{
  font-size: 4rem;
  font-family: 'Cinzel', serif;

  color:#821200;

  text-decoration: underline;

  margin: 0;

  padding: 0;
}


p{
  font-size: 28px;

  font-family: 'Vollkorn SC', serif;
  padding-left: 16rem;
  padding-right: 16rem;

padding-top: 2rem;

  margin: 0;

  display: inline-block;
}

footer{
  font-size: 2rem;
}

/* general */


/* header */

.navbar {
  display: flex;
  position: relative;
  justify-content: space-between;
  align-items: center;
  background-color: #821200;
  color: #FF7F27;
  font-size: 2rem;

  border-bottom: solid 5px;

  z-index: 100;
}

.brand-title {
  font-size: 6rem;
  margin: .5rem;
  margin-left: 2.5rem;
  font-family: 'Cinzel', serif;
  font-weight: bold;
}

.navbar-links {
  height: 100%;
}

.navbar-links ul {
  display: flex;
  margin: 0;
  padding: 0;
}

.navbar-links li {
  list-style: none;
}

.navbar-links li a {
  display: block;
  text-decoration: underline;
  color: #FF7F27;
  padding: 1rem;
}

.navbar-links li a:hover {
  background-color: #FF7F27;
  color: #821200;

  border-radius: 20px;

  transition: transform 0.3s;

  transform: translateY(-10px);
}

.toggle-button {
  position: absolute;
  top: .75rem;
  right: 1rem;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 21px;
}

.toggle-button .bar {
  height: 3px;
  width: 100%;
  background-color: #FF7F27;
  border-radius: 10px;
} 