html {
font-family: 'Josefin Slab', serif;
text-shadow: 3px 3px 8px rgba(0, 0, 0, 0.41);
color: #444444;
}
body {
background: #bdc3c7;  /* fallback for old browsers */
background: -webkit-linear-gradient(to top, #2c3e50, #bdc3c7);  /* Chrome 10-25, Safari 5.1-6 */
background: linear-gradient(to top, #2c3e50, #bdc3c7); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */
background-attachment: fixed;
}
a {
color: inherit;
}
.container {
  align-items: center;
  display: flex;
  justify-content: center;
  height: 100%;
}
.center-div
{
  position: absolute;
  margin: auto;
  max-width: 550px;
  background-color: white;
  padding: 30px;
  margin-top: -5%;
  border-radius: 8px;
}
#disclaimer {
  top: 0;
  margin-top: 15px;
  max-width: 750px;
  text-align: justify;
  text-shadow: none;
}
#imgdiv {
  height: 100%;
  float: left;
  width: 30%;
}
#txtdiv {
    margin-top: 20px;
    margin-left: 33%;	   
}
#links {
    display: table;	    
}
.link {
    width: 30%;
    display: table-cell;
    max-height: 150px;
    padding: 0 5px;
    vertical-align: middle;
}
.linkimg {
    width: 100%;
    max-height: 60px;
}
.portrait {
    max-height: 250px;
    border-radius: 5px;
    max-width: 100%;
}
.shadowed {
    -webkit-filter: drop-shadow(8px 8px 12px rgba(0,0,0,0.5));
    -ms-filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=8, OffY=8, Color='#444')";
    filter: "progid:DXImageTransform.Microsoft.Dropshadow(OffX=8, OffY=8, Color='#444')";
}
#footer {
  font-size: 0.8em;
  bottom: 0;
  position: absolute;
  color: #bbbbbb;
}
@media screen and (max-width: 1200px) {
  .center-div {
      margin-top: -10px;
  }
}
@media screen and (max-width: 600px) {
  body {
    background: none;
    background-colour: white;
  }
  .container {
    display: block;
    padding: 0;
  }
  .center-div {
     padding: 0;
     margin: 10px 0 0 0;
  }
  #imgdiv {
    float: none;
    max-height: 200px;
    text-align: center;
    width: 100%;
  }
  .portrait {
    max-height: 100%;
  }
  #txtdiv {
    margin-top: 20px;
    margin: 10px;
    text-align: center;
  }
  .center-div {
    position: relative;
    -webkit-filter: unset;
    -ms-filter: unset;
    filter: unset;
  }
  #footer {
    bottom: initial;
    float: right;
    right: 5px;
    position: absolute;
    color: #444444;
  }
}

