@import url("https://www.w3schools.com/w3css/4/w3.css");
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css");

div.top {
  background-color: lightgrey;
  padding: 1px;
}

body {margin:0;font-family:Arial}

.topnav {
  overflow: hidden;
  background-color: white;
  box-shadow:
  	0 2px 5px 0 rgba(0,0,0,0.16),
    0 2px 10px 0 rgba(0,0,0,0.12);
}

.w3-bar-item.top-image {
  width: 250px;
  text-align: left;
}

.topnav img[src='images/facebook.jpg'] {
  max-width: 100px;
  display: block;
  margin: auto;
}

.topnav a {
  float: left;
  display: block;
  color: black;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  font-size: 17px;
  font-weight: bold
}

.topnav .icon {
  display: none;
}

.dropdown {
    float: left;
    overflow: hidden;
}

.dropdown .dropbtn {
    font-size: 17px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: lightgray;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
}

.topnav a:hover, .dropdown:hover .dropbtn {
  background-color: lightgray;
  color: black;
}

.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.top-image:hover {
  background-color: initial !important;
}

@media screen and (max-width: 600px) {
  .topnav a:not(:first-child), .dropdown .dropbtn {
    display: none;
  }
  .topnav a.icon {
    float: right;
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}
  .topnav.responsive .icon {
    position: absolute;
    right: 0;
    top: 0;
  }
  .topnav.responsive a {
    float: none;
    display: block;
    text-align: left;
  }
  .topnav.responsive .dropdown {float: none;}
  .topnav.responsive .dropdown-content {position: relative;}
  .topnav.responsive .dropdown .dropbtn {
    display: block;
    width: 100%;
    text-align: left;
  }
}

.flex-container {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  align-items: center;
  justify-content: center;
}

.flex-container > div {
  background-color: white;
  width: 650px;
  margin: 5px;
  text-align: left;
  line-height: 35px;
  font-size: 12px;

}
/* Fake image, just for this example */
.fakeimg {
  background-color: #aaa;
  width: 400px !important;
  padding: 0px;
  /*!important makes it so that the line-height here overwrites the line-height in .flex-contianer > div*/
  line-height: 0 !important;
}

.fakeimg img {
  width:100%;
  align top !important;
}

.tall {
  width:150px !important;
}

.small {
  width:100px !important;
}

.big {
  width:400px !important;
}

.med {
  width:315px !important;
}

div {
  color: black;
}

h1, h2, h3, h4, h5 {
  text-align: center;
  color: black;
}

.lightgray-description {
  background-color: lightgray;
  border-bottom: 20px solid #9e9e9e;
}

h7 {
  font-size: 9px;
}

.w3-row.hotdog {
  margin: auto;
  max-width: 60%;
}