@font-face {
  font-family: aniron;
  src: url(aniron_med.ttf);
  font-weight: normal;
}

@font-face {
  font-family: aniron;
  src: url(aniron_bold.ttf);
  font-weight: bold;
}

@font-face {
  font-family: fell;
  src: url(fell.ttf);
  font-weight: normal;
}

:root {
  --green: #035E03;
  --white: antiquewhite;
  --black: #232323;
  --bg: #fBF3EB;
  --bg-darker: #f7e6d5;
}

body, html {margin:0;padding:0;font-family: fell;background:var(--bg)}
h1,h2,h3,h4,h5,h6{font-family:aniron}
h1,nav{display:inline-block}
header ul {list-style:none;margin-left:2em;padding:0}
header ul li {margin-left:2em;font-size:1.5em;display:inline-block}
header nav ul li a {text-decoration:none;position:relative}
header nav a::before{content: ''; top: 0; position: absolute; left:0;width:0;height:2px;background-color: var(--green);transition:width 0.5s}
header nav a:hover::before,
header nav a:focus::before {width:100%}
.fr{float:right}
.rel{position:relative}

header, footer, main {
  margin: 1em;
  padding: 1em;
  max-width: 95%;
  width: 800px;
}

main {
  font-size: 1.2em;
  letter-spacing: 0.35px;
}

a:any-link {
  color: inherit;
  font-weight: bold;
  text-decoration-color: var(--green);
  text-decoration-thickness: 2px;
}

h1{position:relative;font-size:4em;margin:0 0.2em}

.pretitle {
  position: absolute;
  font-size: 50%;
  top: -0.5em;
  left: 1em;
}

.subtitle {
  position: absolute;
  font-size: 0.8rem;
  bottom: 0em;
  left:1.25em;
}

#submissions {
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}

.icon {
  font-size: 5em;
}

.card {
  background: var(--bg-darker);
  border: 2px dashed var(--green);
  border-radius: 5px;
  width: 45%;
  display: inline-block;
  padding: 2em 1em;
  text-align: center;
}

.card-link {
  padding: 0.5em;
  background: var(--green);
  color: var(--white) !important;
  text-decoration: none;
  border-radius: 10px;
  margin-top: 1em;
  display:inline-block;
  border-bottom: 5px solid var(--black);
  position:relative;
  top: 0;
  transition: 0.1s;
  margin-bottom: 0px;
  letter-spacing: 0.5px
}

.card-link:focus, .card-link:hover {
  top: 4px;
  border-bottom: 1px solid var(--black);
  margin-bottom: 4px;
}

dt {
  font-weight: bold;
  margin-top: 0.5em;
}

.h {
  display: none;
}

footer ul {
  padding: 0;
  list-style: none;
}

footer ul li {display:inline-block}
footer ul li:not(:last-child)::after{content:'|';margin:0 1em}
