/* 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;
}

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

ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
  border-radius: 25px;
}

li {
  float: right;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-family: 'Assistant', sans-serif;
}

li a:hover {
  background-color: purple;
}

.parallax {
  /* The image used */
  background-image: url("https://i.pinimg.com/564x/34/9e/48/349e48788426c322ae5a98c4f21016f3.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.parallax2 {
  /* The image used */
  background-image: url("https://i.pinimg.com/564x/88/5c/1f/885c1f39c1a518833e87997ef41a544b.jpg");

  /* Set a specific height */
  min-height: 500px;

  /* Create the parallax scrolling effect */
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-evenly;
}


#footer {
  position: fixed;
  border-style: solid;  
  padding: ;
  left: ;
  bottom: ;
  width: ;
  background-color: #D8DED6;
  text-align: center;
}

figure {
  float: right;
  width: 190px;
  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;
  border: thin #5D3FD3	 solid;
  border-radius: 25%;
  margin: 0.5em;
  padding: 0.5em;
}
