/* Background */
body {
  background-color: #f8efe7;
  background-image:
    url("https://www.transparenttextures.com/patterns/flowers.png");
  color: #4b3a33;
  font-family: "Georgia", serif;
}

/* Main boxes */
#main,
.region,
.wrapper {
  background: rgba(255, 248, 240, 0.92);
  border: 3px dashed #c48f8f;
  border-radius: 18px;
  padding: 12px;
  box-shadow: 6px 6px 0px #e8cfc0;
}

/* Links */
a {
  color: #b45f7a;
  text-decoration: none;
}

a:hover {
  color: #7a4b5d;
  text-decoration: underline wavy;
}

/* Headers */
h1, h2, h3 {
  color: #8c5b6b;
  font-family: "Times New Roman", serif;
  letter-spacing: 1px;
}

/* Buttons */
button,
.actions a {
  background: #eac7c7;
  border: 2px solid #b77b7b;
  border-radius: 10px;
  color: #4b3a33;
}

/* Patchwork-style tables */
table,
fieldset {
  background:
    repeating-linear-gradient(
      45deg,
      #f5d6d6,
      #f5d6d6 10px,
      #f0e0c9 10px,
      #f0e0c9 20px
    );
  border: 2px dotted #b48a78;
}