* {
  box-sizing: border-box; 
}

body {
  margin: 0;
  padding: 0;
  font-family:"Source Sans Pro", Arial, Helvetica, sans-serif;
}

section {
  padding-block: 1.5%;
}

section:nth-child(odd) {
  background-color: #fff7e3; /*Varden*/
}

section:nth-child(even) {
  background-color: #fffefd;  /*Romance*/
}
section:nth-child(odd) h1 {
  border-bottom: 1px solid #e6decc; /*White Rock*/
}

section:nth-child(even) h1 {
  border-bottom: 1px solid #e6e5e4; /*Mercury*/ 
}

p {
  font-weight: 300;
}

.container {
  margin-inline: 15%;
}

.image-centering {
  display: flex;
  justify-content: center;
}

.text-centering {
  text-align: center;
}

.blank-button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  font-family: "Source Sans Pro", "Arial", "Helvetica";
  font-size: inherit;
}

.blank-button p
.blank-button a {
  color: white;
  text-decoration: none;
}

.grid {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  justify-content: space-evenly;
  gap: 1rem;
}

.grid > div {
  margin-inline: 2rem;
}

.image-slider {
  display: flex;
  justify-content: flex-start;
  overflow: hidden;
  position: relative;
  margin-inline: 23rem;
}

.image-slider-items {
  display: flex;
  flex-direction: row;
  position: relative;
}

.image-slider-items img {
  height: 600px;
}

div.button-links {
  display: flex;
  justify-content: center;
}

div.button-links a {
  background-color: #710000;
  color: white;
  text-decoration: none;
  padding-inline: 1rem;
  padding-block: 0.75rem;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

div.button-links a:hover {
  background-color: #5a0000;
  color: #ffc300;
}