@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Fira+Mono&family=Fira+Sans:wght@400;500&family=Itim&display=swap");
@-webkit-keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@-moz-keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
@keyframes AnimationName {
  0% {
    background-position: 0% 50%; }
  50% {
    background-position: 100% 50%; }
  100% {
    background-position: 0% 50%; } }
* {
  margin: 0;
  padding: 0; }

body {
  background: linear-gradient(252deg, #ff9a76, #ffc4a3, #f96d80);
  background-size: 600% 600%;
  -webkit-animation: AnimationName 30s ease infinite;
  -moz-animation: AnimationName 30s ease infinite;
  animation: AnimationName 30s ease infinite;
  font-family: "Fira Sans", sans-serif; }

.container {
  display: grid;
  grid-template-columns: repeat(10, 9%);
  column-gap: 15px;
  row-gap: 15px;
  margin: 1vw 5vw; }

header {
  grid-column-start: 1;
  grid-column-end: span 10; }
  header h1 {
    text-shadow: 1px 1px #f96d80; }

nav {
  display: flex; }
  nav a {
    margin-right: 1em;
    padding: 0.4em;
    border: 2px dashed currentColor;
    border-radius: 20px;
    background-color: #ffc4a3;
    color: #bb596b; }
  nav a:hover,
  nav a.selected {
    background-color: #f96d80;
    color: #ffc4a3; }
  nav .sub-nav {
    margin-top: 0.4em; }
    nav .sub-nav a {
      margin: 0 0.5em;
      color: #a16d76; }
    nav .sub-nav a:hover,
    nav .sub-nav a.selected {
      color: #f96d80; }

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
  font-weight: 500; }

h2.section-header {
  text-shadow: 1px 1px #f96d80; }

h1,
h2,
h3 {
  color: #bb596b;
  font-family: "Itim", cursive; }

h2,
h3 {
  margin: 0.1em 0; }

a {
  color: #bb599c;
  text-decoration: none;
  border-bottom: 2px dashed currentColor; }
  a :hover {
    color: #f96d80; }

u {
  text-decoration: none;
  border-bottom: 2px dotted currentColor; }

hr {
  margin: 0.3em;
  border: none;
  border-bottom: 2px dashed #a16d76; }

q:before {
  color: #bb596b;
  content: open-quote;
  font-size: 2em;
  line-height: 0.1em;
  margin-right: 0.25em;
  vertical-align: -0.4em;
  quotes: "“" "”" "‘" "’";
  text-shadow: 1px 1px #f96d80; }

q:after {
  color: #bb596b;
  content: close-quote;
  font-size: 2em;
  line-height: 0.1em;
  margin-left: 0.25em;
  vertical-align: -0.4em;
  quotes: "“" "”" "‘" "’";
  text-shadow: 1px 1px #f96d80; }

blockquote {
  background: #ffd4bd;
  border-left: 2px solid #a16d76;
  margin: 1em 10px;
  padding: 0.5em 10px; }

code {
  font-family: "Fira Mono", monospace;
  background: #ffd4bd;
  padding: 0.1em; }

table {
  border-collapse: collapse;
  table-layout: fixed;
  white-space: normal; }
  table th {
    font-family: "Itim", cursive;
    font-weight: 400; }
  table td,
  table th {
    text-align: left;
    padding: 0.25em; }
  table td,
  table th {
    border-bottom: 1px dotted currentColor; }
  table thead th {
    border-bottom: 2px dotted currentColor;
    border-top: 2px dotted currentColor; }

ul {
  list-style-type: circle; }

ul li,
ol li {
  margin-left: 0.75em; }

p {
  margin: 0.25em; }

main,
section,
article {
  background-color: #ffc4a3;
  border: 2px solid #bb596b;
  border-radius: 20px;
  padding: 1vw;
  box-shadow: 5px 10px #a16d76; }
  main .content,
  section .content,
  article .content {
    padding: 0.4em; }

footer {
  padding: 0.5rem;
  display: flex;
  justify-content: space-between; }

#about,
#headers,
#display,
#text {
  grid-column-end: span 10; }

#about,
#quotes,
#headers {
  grid-row-end: span 1; }

#display,
#text {
  grid-row-end: span 2; }

#headers,
#quotes,
#display {
  grid-column-end: span 5; }

/*# sourceMappingURL=style.css.map */
