html {
  font-size: 32px;
  height: 100%;
  background: linear-gradient(to bottom, 
    rgba(246,211,36,1) 11%, rgba(239,188,59,1) 33%, 
    rgba(224,141,107,1) 48%, rgba(149,101,174,1) 64%, 
    rgba(76,83,214,1) 81%, rgba(42,99,181,1) 90%, rgba(11,108,170,1) 100%);
  background-attachment: fixed;
}

body {
  height: 100%;
  width: 100%;
  margin: 0;
  background-color: rgba(255, 255, 255, 0);
  position: fixed;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto auto;
  align-content: start;
}

.quote_container {
  overflow: auto;
}

blockquote {
  background-color: rgba(255, 255, 255, 0.25);
  border-radius: 0.5em;
  padding: 0.5em;
  max-width: 30em;
}

a {
  color: black;
}

.source {
  font-size: 1.2em;
}

.navbar {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-left: 1em;
  padding-right: 1em;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  background-color: rgba(255, 255, 255, 0.25);
  font-variant: small-caps;
}

form {
  padding: 1em;
  overflow-y: auto;
  width: 100%;
}

form * {
  width: 30em;
  max-width: 100%;
  box-sizing: border-box;
}

form label {
  font-size: 1em;
  font-variant: small-caps;
}

form input, form textarea {
  font-size: 0.8em;
}

#submit {
  background-color: rgba(255, 255, 255, 0.25);
  font-variant: small-caps;
  border: none;
  padding: 0px;
  letter-spacing: 0.5em;
}

#submit:hover {
  background-color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.2em;
  transition: background-color 0.2s ease-out, letter-spacing 0.2s ease-out;
}
