:root {
  --background-color: #ffffff;
  --accent-color: #64805c;
  --text-color: #000000;
}

body {
  background-color: var(--background-color);
  box-sizing: border-box;
  margin: 0px;
  padding: 0px 50px;
}

h1 {
  color: inherit;
  font-family: "Playfair Display", "Arial", serif;
  font-weight: 700;
  font-size: 36px;
}

h2 {
  color: inherit;
  font-family: "Playfair Display", "Arial", serif;
  font-weight: 700;
  font-size: 30px;
}

h3 {
  color: inherit;
  font-family: "Playfair Display", "Arial", serif;
  font-weight: 700;
  font-size: 26px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    margin-top: 0;
    margin-bottom: 0;
}

p {
  color: inherit;
  font-family: "Poppins", "Arial", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

/*Navigation bar styles, which will be reused across all pages of the website*/
#navigation-bar {
  display: flex;
  justify-content: center;
  background-color: var(--background-color);
  font-family: "Poppins", "Arial";
  font-weight: 400;
  padding: 20px;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  margin: 0 15px;
  font-size: 18px;
  display: inline-block;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 2px;
  bottom: 0;
  left: 0;
  background-color: var(--accent-color);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
  will-change: transform;
}

.nav-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}
/*End of navigation bar styles*/