
body {
    background-color: black;
    color: white;
    font-family: Verdana;
    text-align: left;
  }

ul li{
    color: white;
}

ul li.b{
    list-style-type: none;
}

.container {
    display: -webkit-flex;
    display: flex;
    max-width: 900px;
    margin: auto;
    background-color: black;
}  

nav {
    width: 200px;
    border-style: double;
    border-width: thick;
    border-color: #F5A9B8;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    text-align: left;
    padding-top: 130px;
}

.flex-column {
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
}

.elem{
    padding: 20px;
    border-style: double;
    border-width: medium;
    border-color: gray;
    text-align: left;
}

footer{
    text-align: right;
}

h1 {
  font-family: "Fondamento", cursive;
  font-weight: 400;
  font-style: normal;
  font-size:64px;
  text-shadow: 2px 2px #F5A9B8;  
  text-align: center;
}

h2 {
  color: #F5A9B8;
  text-align: center;
}

h3 {
 color: #58cefa; 
  text-align: center; 
}

body {
  font-family: "Courier Prime", monospace;
  font-weight: 400;
  font-style: normal;
}

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;
  font-size: 12px;
}

* {
  box-sizing: border-box;
}

.responsive {
  padding: 0 6px;
  float: left;
  width: 33.2%;
}

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

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

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