/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

*, *::before, *::after {
  box-sizing: border-box;
}
* {
  margin: 0;
}
html, body {
  height: 100%;
}
body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}
img, picture, video, canvas, svg {
  display: block;
  max-width: 100%;
}
input, button, textarea, select {
  font: inherit;
}
p, h1, h2, h3, h4, h5, h6 {
  overflow-wrap: break-word;
}
#root, #__next {
  isolation: isolate;
}

/*
  Site styling
*/

body {
    font-family: sans-serif;   
    background-image: url("data:image/svg+xml,%3Csvg width='15' height='15' viewBox='0 0 50 50' xmlns='http://www.w3.org/2000/svg' xml:space='preserve' style='fill-rule:evenodd%3Bclip-rule:evenodd'%3E%3Ccircle cx='25' cy='25' r='10'/%3E%3C/svg%3E");
  }

/*
Josh's Full-Bleed Layout
https://www.joshwcomeau.com/css/full-bleed/
*/

.wrapper {
  display: grid;
  grid-template-columns:
    1fr
    min(85ch, 100%)
    1fr;
}
.wrapper > * {
  grid-column: 2;
}
.full-bleed {
  width: 100%;
  grid-column: 1 / 4;
}

/*
  Header 
*/
.header-bar {
  border: 0;
  border-bottom: 2px;
  border-color: #000000;
  border-style: solid;
  background-color: #FFFFFF;
}

.header-wrapper {
  height: 60px;
  display: flex;
  -moz-box-pack: justify;
  justify-content: space-between;
  -moz-box-align: center;
  align-items: center;
  padding: 0px;  
}

.header-content {
  flex: 1 1 0%;
  display: flex;
  -moz-box-align: baseline;
  align-items: baseline;
}

.header-hero {
  text-decoration: none;
  color: #000000;
  -moz-box-align: center;
  align-items: center;
  margin-right: 32px;
}

.header-list {
  display: flex;
  list-style: none;
  padding: 0px;
}

.header-item {
  margin: 10px;
}

.header-item-wrapper {
  position: relative;
  display: flex;
  -moz-box-align: center;
  align-items: center;
}

.header-item-wrapper > a {
  position: relative;
  text-decoration: none;
  color: #000000;
  padding: 10px;
}

/*
  Body content
*/

.body-title {
  text-align: center;
}

.panel {
  margin-top: 10px;;
  background-color: #FFFFFF;
  border-color: #000000;
  border-style: solid;
  background-color: #FFFFFF;
}

.panel-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.panel-showcase-visual {
  min-height: 42ch;
}

.panel-showcase-item {
  padding: 10px;
}