/* THE LITTLE CABINET */

body {
  background-image:
    linear-gradient(rgba(125, 145, 120, 0.28), rgba(125, 145, 120, 0.55)),
    url("cabinet-bg.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;

  color: #211C18;
  font-family: Georgia, "Times New Roman", serif;
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 25px;
}


/* HEADER */

header {
  text-align: center;
  border-bottom: 1px solid #211C18;
  padding-bottom: 30px;
  margin-bottom: 40px;

  background: rgba(232, 223, 201, 0.55);
  padding-top: 20px;
}


/* HEADER TEXT */

header h1 {
  font-size: 42px;
  letter-spacing: 5px;
  margin-bottom: 5px;
}

header h2 {
  font-size: 20px;
  letter-spacing: 8px;
  font-weight: normal;
  margin-top: 0;
}

header p {
  font-size: 14px;
  letter-spacing: 2px;
}


/* WELCOME */

.welcome {
  text-align: center;
  font-size: 18px;
  margin-bottom: 50px;

  background: rgba(232, 223, 201, 0.55);
  padding: 20px;
}

.welcome p:last-child {
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: lowercase;
}


/* NAVIGATION */

.cabinet-sections {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 25px;

  border-top: 1px solid #211C18;
  border-bottom: 1px solid #211C18;

  padding: 25px 10px;
  margin-bottom: 50px;

  background: rgba(232, 223, 201, 0.55);
}

.cabinet-sections a {
  color: #211C18;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 2px;
}

.cabinet-sections a:hover {
  text-decoration: underline;
}


/* CABINET */

.explore {
  text-align: center;
  padding: 35px;

  background: rgba(232, 223, 201, 0.55);

  border: 1px solid #211C18;
  margin-bottom: 60px;
}

.explore h2 {
  font-size: 24px;
  letter-spacing: 4px;
}

.explore p {
  font-size: 16px;
  line-height: 1.7;
}

.explore a {
  color: #211C18;
}


/* FOOTER */

footer {
  text-align: center;
  border-top: 1px solid #211C18;
  padding-top: 25px;
  background:rgba (232,223,201,0.55);
  font-size: 12px;
  letter-spacing: 1px;

  background: rgba(232, 223, 201, 0.38);
  padding-bottom: 15px;
}