@import url('https://fonts.googleapis.com/css2?family=MedievalSharp&family=Modern+Antiqua&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Modern+Antiqua&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Modern Antiqua", serif;
  background-color: #38261a;
  color: gold;
  padding: 20px;
  min-height: 100vh;
}

/* MAIN LAYOUT */
.layout {
  display: grid;
  grid-template-columns: 220px 1fr 220px;
  gap: 20px;
  max-width: 1400px;
  margin: auto;
  align-items: stretch;
}

/* SIDEBARS */
.sidebar {
  background: #2b1d14;
  border: 3px solid #7a5a2b;
  padding: 15px;
}

/* MIDDLE COLUMN */
.middle {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* HEADER */
.header {
  background: #4a3222;
  border: 3px solid #9b7b3d;
  padding: 25px;
  text-align: center;
}

/* MAIN CONTENT */
.main-content {
  background: #24180f;
  border: 3px solid #9b7b3d;
  padding: 25px;
  min-height: 70vh;
}

h1 {
  text-align: center;
  font-family: "MedievalSharp", cursive;
  font-weight: 100;
  font-style: italic;
  font-size: 100px;
  padding-bottom: 0px;
  line-height: 1;
}

h2 {
  text-align: center;
  font-family: "MedievalSharp", cursive;
  font-weight: 100;
  font-style: italic;
  font-size: 50px;
  padding-top: 0px;
  margin-bottom: 15px;
}

h3 {
  text-align: center;
  font-family: "MedievalSharp", cursive;
  font-weight: 100;
  font-style: italic;
  font-size: 25px;
  padding-top: 0px;
  margin-bottom: 15px;
}

p {
  margin-bottom: 12px;
  line-height: 1.5;
}

ul {
  padding-left: 20px;
}

a {
  text-decoration: none;
  color: #35b01c;
  font-weight: bold;
}

/* Mouse over link */
a:hover {
  color: #83bd5c;
  font-style: italic;
}

/* Selected link */
a:active {
  color: white;
  font-style: italic;
}

/* MOBILE */
@media (max-width: 900px) {
  .layout {
    grid-template-columns: 1fr;
  }

  .sidebar {
    min-height: auto;
  }

  h1 {
    font-size: 60px;
  }
}