:root {
  --text: #504b38;
  --border: #504b38;
  --accent: #b9b28a;
  --accent2: #ebe5c2;
  bg: #f8f3d9;
}

header {
  background: url("");
}

* {
  box-sizing: border-box;
}

@font-face {
  font-family: Karrik;
  src: ("https://violetnichols.neocities.org/assets/Karrik-Regular.ttf") ;
}

#karrik {
  font-family: Karrik;
  
}

body {
  font-family: 'karrik', helvetica, sans-serif;
  font-size: 12px;
  background-image: url ("bg.jpg");
  display: flex;
  justify-content: center;
  letter-spacing: 1px;
  text-shadow: 0px 0px 1px;
  color: ;
  padding: 8px 0;
}

.container {
  max-width: 55rem;
  margin: 5vw auto 12px auto;
  border: 4px ridge #b9b28a;
  outline: 2px solid #b9b28a;
  outline-offset: 4px;
  border-radius: 8px;
  display: flex;
  flex-wrap: wrap;
  padding: 4px;
  gap: 4px;
  background: #f8f3d9;
  opacity: 95%;
  
}

/* these control the column widths */
.small { flex: 1 1 9%; }
.large { flex: 1 1 82%; }
.full { flex: 1 1 100%; }
.half { flex: 1 1 49%; }

header {
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 120px; /*change banner height here*/
  border: 2px ridge #504b38;
  border-radius: 4px;
  position: relative;
  background-color: #f8f3d9;
}

header span {
  font-size: 2.5rem;
  position: absolute;
  bottom: 0;
  right: 12px;
  margin: 12px;
  font-weight: bold;
  text-shadow: 1px 1px #b9b28a,
    -1px 1px #b9b28a,
    1px -1px #b9b28a,
    -1px -1px #b9b28a;
  color: #504b38;
}

.flex {
  display: flex;
  gap: 24px;
  padding: 24px 12px 12px 12px;
  align-content: right;
}

nav {
  border: 2px ridge #b9b28a;
  border-radius: 4px;
  padding: 4px;
  background: transparent;
}

nav div {
  text-align: center;
  font-size: 1.25rem;
  margin: 4px 4px 8px 4px;
}

nav a {
  display: block;
  margin: 4px;
  background: transparent;
  border-radius: 4px;
  padding: 2px 8px;
  text-decoration: none;
}

nav a:link, nav a:visited {
  color: #b9b28a;
  font-size: 16pt;
  font-weight: 500;
}

section {
  border: 2px ridge #b9b28a;
  border-radius: 4px;
  padding: 4px;
  background: #f8f3d9;
}

footer {
  text-align: center;
  margin-bottom: 5vw;
  font-size: 0.8rem;
}

footer a {
  text-decoration: none;
}

h1, h2, h3, h4, p {
  margin: 4px;
  line-height: 1.2;
  color: #504b38;
}

h1 {
  font-size: 24pt;
  letter-spacing: 2px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px ridge #ebe5c2;
  padding-bottom: 4px;
}

h2 {
  font-size: 18pt;
  font-weight: bold;
  text-align: center;
  color: #504b38;
}

h3, h4 {
  font-size: 16pt;
  font-weight: semibold;
}

p {
  font-size: 14pt;
  font-weight: semibold;
}

ul li {
  color: #504b38;
  font-size: 14pt;
  font-weight:semibold;
}

/* prevents overflow on smaller screens */
img { max-width: 100%; }
pre { overflow-x: auto; }

a:hover, a:focus {
  font-style: italic;
  font-size: 16pt;
  font-weight: semibold;
}

a:visited {
  color: #b9b28a;
  font-size: 16pt;
  font-weight: semibold;
}

hr {
  margin: 16px;
}

section {
  padding: 24px;
}
  
  