/* Base Colours */
/* Accent Colours */
/* Supporting Colour */
#site-header {
  position: absolute;
  z-index: 1;
  height: 10vh;
  width: 100vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-image: linear-gradient(rgb(0, 0, 0), rgba(0, 0, 0, 0));
}
#site-header #main-navigation {
  padding: 1.5vh;
}
#site-header a#logo {
  padding: 1.5vh;
}

#logo {
  height: 100%;
  max-width: 50%;
  margin-right: auto;
  aspect-ratio: auto;
}
#logo img {
  max-height: 100%;
  max-width: 250px;
}

#main-navigation {
  height: 100%;
}
#main-navigation > button {
  border: none;
  height: 100%;
  aspect-ratio: 1;
}
#main-navigation #menu-ul-case {
  display: none;
  position: absolute;
  inset: 0;
  background: white;
  color: black;
  width: 100vw;
  height: 100vh;
  padding: 1.5vh;
}
#main-navigation #menu-ul-case header {
  height: 10vh;
  display: flex;
  flex-flow: column;
  max-width: 70%;
}
#main-navigation #menu-ul-case header img {
  max-height: 100%;
  max-width: 100%;
  aspect-ratio: auto;
  width: 300px;
  filter: contrast(300%);
}
#main-navigation #menu-ul-case > button {
  background: no-repeat center/50% url("../assets/site/close-icon.svg") #283593;
  border: none;
  height: 30px;
  width: 30px;
  border-radius: 5px;
  position: absolute;
  top: 15px;
  right: 15px;
}
#main-navigation #menu-ul-case.active {
  display: flex;
  flex-flow: column;
}
#main-navigation ul {
  list-style-type: none;
  padding: 0;
  display: flex;
  flex-flow: column;
  align-items: flex-start;
}
#main-navigation ul li {
  font-size: 6vh;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-navigation ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}
#main-navigation > a {
  color: white;
  font-weight: bolder;
}

@media (min-width: 768px) {
  #main-navigation {
    width: 50%;
  }
  #main-navigation button {
    display: none;
  }
  #main-navigation #menu-ul-case {
    display: flex;
    position: static;
    height: 100%;
    width: 100%;
    background: transparent;
  }
  #main-navigation #menu-ul-case header {
    display: none;
  }
  #main-navigation #menu-ul-case ul {
    margin: 0;
    height: 100%;
    background: transparent;
    list-style-type: none;
    padding: 0;
    width: 100%;
    flex-flow: row;
    justify-content: space-between;
  }
  #main-navigation #menu-ul-case ul li {
    font-size: 3vh;
    flex: 1;
  }
  #main-navigation > a {
    color: white;
    font-weight: bolder;
  }
}
* {
  box-sizing: border-box;
}

html, body {
  background: black;
  color: white;
  font-family: "Segoe UI", Tahoma, Verdana, sans-serif;
  height: 100vh;
  width: 100vw;
}

body {
  margin: 0;
  overflow: overlay;
  min-width: 320px;
}
body > footer {
  padding: 3vh;
}

main {
  min-height: 80%;
  height: max-content;
  display: flex;
  overflow: visible;
}

footer {
  background: #1C1C1C;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}
footer figure {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-flow: column;
  width: 50%;
  margin: 0;
}
footer small {
  width: 100%;
  text-align: center;
}

address {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50%;
}
address dl {
  margin: 0;
  display: grid;
  grid-template-columns: 20px 1fr;
}
address dl dd {
  margin: 0;
}

p {
  max-width: 80ch;
}

h1, h2, h3, h4, h5, h6 {
  color: #9d6ef0;
}

a, a:visited {
  color: #9d6ef0;
}

::-webkit-scrollbar {
  width: 1.5vh;
  height: 1.5vh;
}
::-webkit-scrollbar-track {
  background: #FF4081;
}
::-webkit-scrollbar-thumb, ::-webkit-scrollbar-button {
  background: #283593;
}
::-webkit-scrollbar-thumb {
  border-radius: 2px;
}

button.hamburger-menu {
  background: center/cover url("../assets/site/hamburger-icon.webp") transparent;
  filter: Invert();
}