body {
    background-color: black;
    height: 100%;
}
body h2, body h3, body h4, body p {
    color: white;
}
img {
    border-radius: 3%;
    object-fit: contain;
    width: 100%;
    height: 100%;
}
img.social {
    width: auto;
    height: auto;
    display: block;
    margin: 0 auto;
    padding-top: 1em;
    border-radius: 0%;
}
@media only screen and (min-width: 671px) {
  img.right {
    display: inline-block;
    width: 100%;
    float: right;
    padding-bottom: 2em;
  }
  img.left {
    display: inline-block;
    width: 100%;
    float: left;
    padding-bottom: 2em;
  }
  ul.horizontal-menu > li.logo a {
    background-image: url(../img/LOGO_2020.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-bottom: 5em;
  }
  #content p {
    color: black;
    font-size: x-large;
    width: auto;
  }
  #content div.map {
    width: 45%;
    height: 400px;
    float: right;
  }
}

@media only screen and (max-width: 670px) {
  img.right {
    display: inline-block;
    width: 100%;
    float: right;
    padding-bottom: 2em;
  }
  img.left {
    display: inline-block;
    width: 100%;
    float: left;
    padding-bottom: 2em;
  }
  ul.horizontal-menu > li.logo a {
    background-image: url(../img/LOGO_2020.jpg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    padding-bottom: 3em;
  }
  #content p {
    color: black;
    font-size: x-large;
  }
  #content div.map {
    width: 100%;
    height: 400px;
  }
}
img.middle {
     display: inline-block;
     padding-bottom: 2em;
 }
.menu div {
    float: left;
    color: white;
}

/* HORIZONTAL MENU*/
ul.horizontal-menu {
  list-style-type: none;
  margin: 0;
  padding: 0;
  overflow: hidden;
  background-color: black;
}

ul.horizontal-menu > li {
  float: left;
}

ul.horizontal-menu > li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
}

ul.horizontal-menu > li a:after{
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  background-image: radial-gradient(circle, rgba(100,100,100) 10%, transparent 10.01%);
  background-repeat: no-repeat;
  background-position: 50%;
  transform: scale(10, 10);
  opacity: 0;
  transition: transform .5s, opacity 1s;
}

ul.horizontal-menu > li a:active:after {
  transform: scale(0, 0);
  opacity: .3;
  transition: 0s;
}

ul.horizontal-menu > li a:hover:not(.active) {
  background-color: rgba(50,50,50);
  color:white;
  cursor:pointer;
}

ul.horizontal-menu > li a.active {
  background-color: rgba(70,70,70);
  cursor:pointer;
}

ul.horizontal-menu > li.logo{
     float: none;
     left: -10%;
}
ul.horizontal-menu > li.logo a:hover {
    background-color: black;
    cursor: auto;
}
ul.horizontal-menu > li.logo a:after {
  transition: transform 0s, opacity 0s;
}
div.copyright {
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
    color: white;
}

.normal-font {
  flex-shrink: 1;
  -webkit-font-smoothing: antialiased;
  color: rgb(255, 255, 255);
  font-family: Futura, sans-serif;
  font-size: 150%;
  line-height: 1.5rem;
  font-weight: 400;
  letter-spacing: normal;
  overflow: hidden;
}
