@import url("https://fonts.googleapis.com/css?family=Crimson+Text:400,400i&display=swap");

* {
  margin: 0;
  font-family: "Crimson Text";
}

.header-bg {
  height: 25vh;
  width: 100%;
  background-color: #333;
  background-image: url("/img/header.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  box-shadow: inset 300px 300px 0 600px rgba(0, 0, 0, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.title {
  color: #fff;
  font-size: 60px;
  font-weight: 500;
}
.title sup {
  font-size: 35px;
}

.subtitle {
  color: #fff;
  font-size: 35px;
  font-weight: 500;
  text-align: center;
}

.bounding-area {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  margin: 2em;
}

.drawing-area {
  flex: 2 1 auto;
}

.control-area {
  flex: 1 1 auto;
  margin-left: 3em;
}

#grid-lines {
  pointer-events: none;
  position: absolute;
  padding: 0;
  margin: 0;
  z-index: 3;
  border: 2px dashed rgba(0, 0, 0, 0.5);
}

#diag1 {
  position: absolute;
  transform-origin: top left;
  transform: rotate(0.125turn) translateX(-2px) translateY(-1px);
  border-top: 2px dashed rgba(0, 0, 0, 0.5);
}

#diag2 {
  position: absolute;
  transform-origin: top left;
  border-top: 2px dashed rgba(0, 0, 0, 0.5);
}

#horiz {
  position: absolute;
  transform-origin: top left;
  border-top: 2px dashed rgba(0, 0, 0, 0.5);
}

#vert {
  position: absolute;
  transform-origin: top left;
  border-top: 2px dashed rgba(0, 0, 0, 0.5);
}

#renders {
  display: none;
}
