/* Outlyer branding */

:root {
  /* --outlyer-yellow: #e7ff00; */
  --outlyer-yellow: rgb(231, 255, 0);
  --outlyer-silver: #a2a2a2;
  --outlyer-dark:   #181818;
  --outlyer-black:  #101010;
  --outlyer-font: "Titillium Web";
}


/* base elements */

html, body {
  height: 100%;
  background-color: #000020;
}

body {
  background: linear-gradient(170deg,rgba(231, 255, 0, 0.15) 0%, black 80%);
  font-family: var(--outlyer-font);
  font-size: 1.2rem;
  color: white;
}

.navbar {
  background: var(--outlyer-black);
  border-bottom: 2px solid transparent; /* Set the thickness of the border */
  border-image: linear-gradient(to right,
      var(--outlyer-yellow),
      var(--outlyer-silver),
      var(--outlyer-silver)) 1;
}

.container {
  min-width: 90vw;
}

a {
  text-decoration: none;
  color: white;
  opacity: 80%;
}
a:hover {
  text-decoration: none;
  color: white;
  opacity: 100%;
}
p a {
  color: var(--outlyer-yellow);
  opacity: 100%;
  }
p a:hover {
  color: var(--outlyer-yellow);
  text-decoration: underline;
}

h1 {
  color: var(--outlyer-silver);
  font-variant: small-caps;
  opacity: 50%;
  background: #222;
}
h2 {
  color: var(--outlyer-silver);
  font-variant: small-caps;
  opacity: 90%;
}

/* tagline */
.tagline {
  font-size : 80%;
  color: var(--outlyer-silver);
  font-style: italic;
}


/* summary box */
#summary {
  color: var(--outlyer-silver);
  font-size: 150%;
}
span.keyword {
  color: var(--outlyer-yellow);
  font-style: italic;
}
span.object {
  color: white;
  font-variant: small-caps;
}

/* full page logo */
#logo {
  max-width:20vw;
  position: absolute;
  left: 15px;
  bottom: 30px;
}