html,
body {
  margin: 0;
  font-family: sans-serif;
  line-height: 1.5;
  margin: 10px;
}

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

.container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  justify-content: space-around;
  margin-bottom: 50px;
  flex-wrap: wrap;
  color: white;
}

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

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

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

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

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

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

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

a {
  color: pink;
}

a:hover{
  color: white;
}

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