/* h1 {
  text-decoration: underline;
} */

/* a minimalist set of CSS resets */

/* default to border-box */
a {
  color: rgb(238, 172, 255);
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
  color: rgb(63, 10, 107);
  font-family: "Roboto Mono", monospace;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}
html {
  box-sizing: border-box;
  font-size: 16px;
}

*,
*:before,
*:after {
  box-sizing: inherit;
}

/* adjust typography defaults */
body {
  background: #81dbff;
  background: linear-gradient(
    90deg,
    rgb(226, 154, 255) 0%,
    rgb(253, 255, 105) 30%,
    rgb(217, 177, 255) 50%,
    rgb(211, 197, 0) 100%
  );
  padding: 12px;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 10px;
}

/* images and videos max out at full width */
img,
video {
  height: 200px;
  max-width: 100%;
}

.nav > div {
  border-radius: 20px;
  padding: 10px;
  text-align: center;
  font-size: 2em;
  color: #ffe65c;
}

.nav > div:nth-child(1) {
  background-color: #ffed8a;
}

.nav > div:nth-child(2) {
  background-color: #c368ff;
}

.nav > div:nth-child(3) {
  background-color: #fdff80;
}

#footer {
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
  background-color: #a48ee0;
  color: rgb(227, 184, 255);
  text-align: center;
}
