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

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

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

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

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

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

i {
  color: var(--italic-color);
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
}

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

a:hover, .nav-link:hover {
  color: var(--accent-color);
  transition: color 0.25s ease;
  will-change: color;
}

table {
  margin: 10px auto;
  width: 100%;
  height: 100%;
  padding: 0 20px;
  border-collapse: collapse;
  overflow: auto;
  word-wrap: break-word;
  text-align: center;
}

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

tr {
  border-bottom: 1.5px solid var(--accent-color);
  border-bottom-style: dashed;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

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

#navigation-bar {
  display: flex;
  justify-content: center;
  background-color: var(--background-color);
  font-family: "Poppins", "Arial";
  font-weight: 400;
  padding: 20px;
}

/*Navigation bar styles, which will be reused across all pages of the website*/
.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*/

/*Credits table*/
#credits-table {
  border-collapse: collapse;
}

/*Footer styles, which will be reused across all pages of the website*/
#footer {
  align-items: center;
  text-align: center;
  padding: 20px 0;
  font-family: "Poppins", "Arial", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--text-color);
}
/*End of footer styles*/