/* a minimalist set of CSS resets */

/* default to border-box */
html {
  box-sizing: border-box;
  font-size: 16px;
}

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

/* adjust typography defaults */
html, body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 10px;
  background-color: black;
  font-weight: bold; color:cadetblue;
  font-family: "Meie Script";
}

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

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

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

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

.nav > div:nth-child(3) {
  background-color: darkmagenta;
}
a:link{
  color: cadetblue;
}
a:hover{
  color: azure;
}


.nav {
  border: 5px solid #ffcc5c;
  border-color: aliceblue;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}
#footer {
  position: fixed;
  border-style: solid;  
  padding: ;
  left: ;
  bottom: ;
  width: ;
  background-color: #D8DED6;
  text-align: center;
}