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


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

.container2 {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 50px;
}

div.gallery {
  border: 1px solid black;
  
}

div.gallery:hover {
  border: 1px solid #777;
}

div.gallery img {
  width: 100%;
  height: auto;
}

div.desc {
  padding: 15px;
  text-align: center;
  color: black;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width:50%;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 50px;
}

@media only screen and (max-width: 700px) {
  .responsive {
    width: 49.99999%;
    margin: 6px 0;
  }
}

@media only screen and (max-width: 500px) {
  .responsive {
    width: 100%;
  }
}

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.heading2 {
  color: black;
  text-align: center;
  font-family: "Anton", sans-serif;
  font-size: 35px;
}

figure {
  float: right;
  text-align: center;
  font-style: italic;
  font-size: smaller;
  text-indent: 0;
  border: thin black	 solid;
  margin: 0.5em;
  padding: 0.5em;
}

a {
  color: purple;
}

a:hover{
  color: black;
}