/* Document level adjustments */
html {
  background-color: rgb(14, 6, 47);
  color: white;
  font-size: 1.5em;
  line-height: normal;
}

body {
  font-family: "Lato";
  padding: 1rem;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  margin-block-end: 0em;
  color: rgb(253, 217, 0);
}

h1 {
  font-size: 2rem;
}

.hero {
  max-width: 768px;
  margin: auto;
}

.hero p {
  font-size: 1.125em;
}

section {
  display: block;
  max-width: 1444px;
  margin: auto;
  margin-top: 3rem;
}

/* display a 2-column grid >768 */
@media (min-width: 768px) {
  .principle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 2rem;
    align-items: center;
    justify-content: center;
    grid-auto-flow: row dense;
  }
}

/* select odd principle sections and select the first block within */
/* set the column of that block to the right to create an alternating layout */
.principle:nth-child(odd) .block:nth-child(1) {
  grid-column-start: 2;
}

.block img {
  max-width: 100%;
  height: auto;
}

#canvaswrapper {
  background-color: rgb(14, 6, 47);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 0;
}

#toolbarcontainer {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  justify-content: space-between;
  border-bottom: 1px solid rgb(46, 25, 136);
  backdrop-filter: blur(30px);
  user-select: none;
  overflow: visible;
  font-size: 14px;
  z-index: 10;
  touch-action: manipulation;
}

.buttongroup button {
  background: transparent;
  cursor: pointer;
  border: none;
  outline: none;
}

#svgcanvas {
  margin: 0;
  padding: 0;
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  touch-action: none;
  z-index: 0;
  overscroll-behavior: none;
  overflow: hidden;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.guestbook {
  margin-top: 6rem;
}

.gallery {
  columns: 3 200px;
  column-gap: 0rem;
  max-width: 1444px;
  margin: auto;
}

.drawing {
  padding: 1rem;
  width: 100%;
  height: 100%;
}

.draw-icon {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  /* margin: 0.25rem; */
  /* margin-right: 0.5rem; */
}
.draw-icon:hover {
  background-color: rgb(46, 25, 136);
}

a {
  color: white;
}

[v-cloak] {
  display: none;
}
