body
  {
  background: url('../images/background.jpg') repeat;
  font-family:Verdana, Arial;
  }

a:link
  {
  text-decoration: none;
  color: black;
  }
a:visited
  {
  text-decoration: none;
  color: black;
  }
a:hover
  {
  text-decoration: none;
  color: red;
  }
a:active
  {
  text-decoration: none;
  color: black;
  }

.container
  {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  margin: 0 .2% 0 .2%;
  }
.centered-div
  {
  max-width:1000px;
  width:95%;
  background-color: white;
  }
.centered-div2
  {
  max-width:970px;
  width:100%;
  }
.centered-div3
  {
  max-width:1000px;
  width:95%;
  }

.image-container
  {
  display: flex;
  justify-content: center;;
  width: 100%;
  overflow: hidden;
  }

.image-wrapper
  {
  display: flex;
  justify-content: center;
  align-items: center;
  }

.image-wrapper img
  {
  height: auto;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  object-fit: cover;
  max-width: 100%;
  }

.no-space-container
  {
  line-height: 0;
  }

.responsive-img
  {
  max-width: 100%;
  height: auto;
  }

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

.responsive-img2
  {
  max-width: 50%;
  height: auto;
  max-height: 192px;
  }

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