body {
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  font-family: sans-serif;
  background-color: #2d2d2d;
  color: #f8f8f8;
}

a {
  color: #f8f8f8;
}

main {
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: 1.5fr 0.5fr; 
  gap: 0px 0px; 
  grid-template-areas: 
    ". ."; 
}

.query-display {
  text-align: center;
  background: paint(sql-css);
  grid-column: 1;
}

.query-controls {
  grid-column: 2;
  padding: 1em;
}

.query-controls h1 {
  font-weight: normal;
  text-decoration: underline;
  text-align: center;
}

label {
  font-weight: bold;
  display: block;
}

.form-input {
  margin: 1em auto;
  padding: 0.5em;
  display: block;
  width: 90%;
}

.git-repo {
  position: absolute;
  bottom: 1em;
  right: 1em;
}