body {
  margin: 0;
  background: #404040;
  font-family: Helvetica Neue, Helvetica, Arial, sans-serif;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

a:link {
  color: #505050;
  text-decoration: none;
}

a:visited {
  color: #505050;
  text-decoration: none;
}

a:hover {
  color: #505050;
  text-decoration: none;
}

a:active {
  color: #505050;
  text-decoration: none;
}

.header {
  width: 85%;
  text-align: center;
  padding: 5px 0;  
  margin: 0 auto;
  background-color: #000000;
  text-align: right;
}

.logo {
  padding: 5px;
  margin-top: 8px;
  margin-left: 1.5%;
  width: 200px;
  height: 70px;
}

.container {
  margin-left: 1.2%; 
  display: grid;
  grid-template-columns: 280px 1fr 1fr 5px;
}  

.title
{
  color: #606060;  
  text-align: left;
  padding: 67px 0 0;
  align-content: left, bottom;
}

.copyright {
  writing-mode: vertical-rl;
  margin-right: 1px;
  margin-top: 0px;
  font-size: 10px;
  color: #484848;
}

.footer {
  background-color: #282828; 
  width: 85%; 
  margin: 0 auto;
  flex-grow: 1;
}

.row {
  display: -ms-flexbox; /* IE10 */
  display: flex;
  -ms-flex-wrap: wrap; /* IE10 */
  flex-wrap: wrap;
  padding: 1%;
  width: 83%;
  margin:0 auto; 
  background-color: #282828;
}

.column img {
  vertical-align: middle;
  width: 100%;
}

/* Default five column layout */
.column {
  -ms-flex: 19%; /* IE10 */
  flex: 19%;
  max-width: 19%;
  padding: 0.5%;
  display: flex;
}

/* Responsive layout - four column layout */
@media screen and (max-width: 1800px) {
  .column {
    -ms-flex: 24%;
    flex: 24%;
    max-width: 24%;
  }
}

/* Responsive layout - three column layout */
@media screen and (max-width: 1400px) {
  .column {
    -ms-flex: 31.9%;
    flex: 31.9%;
    max-width: 31.9%;
    padding: 0.7%;
  }
}

/* Responsive layout - two column layout */
@media screen and (max-width: 1000px) {
  .column {
    -ms-flex: 48.6%;
    flex: 48.6%;
    max-width: 48.6%;
  }
  .title {
    display: none;
  }
}

/* Responsive layout - one column layout */
@media screen and (max-width: 600px) {
  .column {
    -ms-flex: 100%;
    flex: 100%;
    max-width: 100%;
  }
  .info {
    display: none;
  }
  .hideinfo {
    display: none;
  }
  .title {
    display: none;
  }
  .container {
    grid-template-columns: 280px 1fr 5px; 
  }
}

.zoom {
  transition: transform .2s;
  margin: 0 auto;
}

.zoom:hover {
  -ms-transform: scale(1.1); /* IE 9 */
  -webkit-transform: scale(1.1); /* Safari 3-8 */
  transform: scale(1.1); 
}

.shadow {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.5), 0 6px 20px 0 rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.info {
  position: absolute;
  bottom: 0px;
  right: 10px;
  width: 15px;
  height: 15px;
  padding: 15px 15px 15px 15px;
}

.infopanel {
  background: #D0D0D0;
  height: 85px;
  width: 1400%;
  line-height: 15px;
  color: #202020;
  text-align: left;
  display: none;
  opacity: 0.8;
  margin-top: -125px;
  margin-left: -1450%;
  font-weight: bold;
  font-size: 80%;
  padding: 10px;
}

.infohover:hover + .infopanel {
  display: block;
}

.infosize {
  width: 15px;
  height: 15px;
}

.hideinfo {
  position: absolute;
  right: 0px;
  bottom: 0px;
  width: 5%;
  height: 100px;
  background-color: #404040;
  z-index: 999;
}

.buttons {
  width: 100%;
}

.dimmed {
  opacity: 0.25;
}

