@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

:root {
  --primary-color: #883d00;
  --bg-color: #eef7eb;
  --border-color: #193a10;
}

body {
  margin-inline: auto;
  max-width: 800px;
  background-image: url("/assets/images/background.webp"); 
  padding: 2ch;
  font-family: 'Open Sans', sans-serif;
}

header {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 10px;
  background-color: var(--bg-color);
  border: var(--border-color);
  border-style: solid;
  border-width: 1px;
  box-shadow: 5px 5px var(--border-color);
  margin-bottom: 20px;
}

header h1 {
  margin-bottom: 5px;
  margin-top: 8px;

}

h1 {
  font-family: 'Roboto', sans-serif;
}


nav ul {
  padding-left: 0;
  margin-top: 5px;
  margin-bottom: 5px;

}
nav li {
  display: inline-block;
  margin-right: 5px;
}

section {
  background-color: var(--bg-color);
  border: var(--border-color);
  border-style: solid;
  border-width: 1px;
  box-shadow: 5px 5px var(--border-color);
  padding-left: 25px;
  padding-right: 25px;
  padding-top: 10px;
  padding-bottom: 20px;
}

a:link {
  font-weight: bold;
  text-decoration: none;
  color: var(--primary-color);
}

a:visited {
  color: var(--primary-color);
}

a:hover {
  text-decoration: underline;
}

blockquote {
  border-left: 3px solid black;
  padding-left: 20px;
  color: grey;
}

img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10px;
  margin-bottom: 10px;
  width: 95%;
  object-fit: contain;
  border: solid var(--border-color) 1px;
}