:root {
  --mypink:#b12e4a;
  --myyellow: #f5f5b8;
  --mygreen: #718600;
  --mypurple: #cc85d1;
}

@font-face {
    font-family: "Jacquard12";
    src: url(/fonts/Jacquard12-Regular.ttf);
}
@font-face {
    font-family: "pixelsans";
    src: url(/fonts/PixelifySans-VariableFont_wght.ttf);
}

@font-face {
    font-family: "basis33";
    src: url(/fonts/basis33.ttf);
}

@font-face {
    font-family: "barcode";
    src: url(/fonts/LibreBarcode39-Regular.ttf);
}

html {
  background-image: url(/images/backgrounds/paperT.png);
  background-color: var(--mygreen);
  background-size: cover;
  background-position: 100px;
  font-family: "basis33";
  font-size: 15px;
  margin-left: 5vw;
}

body {
  display: flex;
  flex-direction: column;
  flex-basis: content;
}

h1, h3 {
  font-family: "Jacquard12";
  margin: 5px;
  display: inline-block;
}

h2 {
  font-family: "pixelsans";
}

#cursor {
  content:"";
  position: fixed;
}

a {
  font-family: "pixelsans";
  color: black;
}

a:hover {
  color: var(--mygreen);
}

nav a {
  font-family:  "Jacquard12";
  border: none;
  border-radius: 3px;
  padding: 5px;
  background-color: var(--mygreen);
  font-size: 24px;
}

nav a:hover{
  background-color: var(--mypink);
}

.hiddenBox { 
  display: none;
}

#batCursor {
    width: 25px;
}

button {
  border: none;
  font-family: "Jacquard12", serif;
  font-size: 28px;
  background-color: #b12e4a;
  border-radius: 0.1em;
  padding-right: 0.5em;
  padding-left: 0.5em;
}

button:hover {
  background-color: black;
  color:#718600;
}

footer {
    display: flex;
    flex-direction: column;
    align-items: center;

}


/* QUIZ RESULTS */

#resultsContainer {
  display: flex;
  align-items: center;
  align-content: center;
  padding: 3px;
}

#result {
  padding: 10px;
}

/* code below referenced from anna pawl (annampawl on codepen) */
/* OC SHRINE */
#container { 
  width:60vw;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

#imgAround {
  float: right;
  height:80vh;
  object-fit: contain;
  shape-outside: url(images/test.svg);
  shape-margin:5px;
}

/* ---- */

#charDescription {
  padding: 5px;
}

