/* Insert CSS Below */
@import url('https://fonts.googleapis.com/css2?family=Lobster&family=Ubuntu&display=swap');
:root {
  --primary-dark-color: #881C1C; /* Primary colour used by elements such as buttons */
  --very-dark-primary-color: #881C1C;  /* Darker primary colour used for contrast or hover effects */
  --primary-light-color: #fff; /* lighter colour or secondary colour */
  --topbar-background-color: #881C1C; /* background colour for the top bar of the navigation */
  --menu-background-color:#881C1C; /* background colour for the menu bar of the navigation */
  --menu-alternative-background-color: #881C1C; /* Alternative background colour for the menu bar, used by some buttons */
  --menu-foreground-color: #FFFFFF; /* font colour used in the menu bar */
  --link-color:#000099;
  --toc-link-color: #000000; /* Colour used by text on TOC sidebar elements */
  --figure-caption-background-color: #003DAC; 
  --figure-caption-color: #FFFFFF;
}

.top-bar-left svg {
  max-width: 200px;
  max-height: 60px;
  min-width: 150px;
  fill: #881C1C;
}
body {
  font-family: 'Ubuntu', sans-serif;
}

header {
  font-family: 'Ubuntu', sans-serif;
}

h1, h2, h3, h4, h5, h6, h7, h8 {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 700;
  font-style: normal;
  color: #032a25
}


header .border-right {
  border-right: 1px solid #881C1C;
}

header .border-left {
  border-left: 1px solid #881C1C;
}

header .top-bar-right a {
  color: white;
}

header .top-bar ul.dropdown ul {
  background-color: #881C1C;
}

header .top-bar ul.dropdown ul a:hover {
  background-color: #741818;
}
.summary p {color: #FFF}
.summary .bottom p {
  color: #000;
}
.summary .bottom {
  background: transparent;
  border-top: border: 1px var(--menu-background-color) solid;
}
.mini-bar ul.menu li a {
  color: #000000;
}

@media screen and (min-width: 40em) {
  header .top-bar-left, header .top-bar-right {
    height: 100%;
    padding: 1rem; } }