div#contact_page
{
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 800px;
  min-height: 400px;
  margin: 0px auto;
  padding: 1em;
}

div#contact_page div#prolog
{
  width: 100%;
  margin-bottom: 50px;
}

div#contact_page div.contact_item
{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 450px;
  margin: 0 auto 25px auto;
  font-size: 1.5em;
  letter-spacing: 1px;
  padding: 12px 20px;
  background-color: var(--panel_green);
  border: 1px dotted black;
  border-radius: 6px;

  -webkit-box-shadow: 4px 4px 9px 0px rgba(85,85,85, .5);
  box-shadow: 4px 4px 9px 0px rgba(85,85,85, .5);
}

div#contact_page div.contact_item > div
{
  flex: 0 0 70%;
  margin-left: 12px;
  text-align: center;
}

div#contact_page div.contact_item > div span
{
  white-space: nowrap;
}

div#contact_page div.contact_item img
{
  max-height: 30px;
  min-height: 20px;
  margin: 0 8px 0 0;
}

div#contact_page a#map_address
{
  display: block;
  margin: 0 auto 20px auto;
  font-size: 1.2em;
  letter-spacing: 1px;
  text-decoration: none;
}

div#contact_page a#map_address:link { color: black; }
div#contact_page a#map_address:visited { color: black; }
div#contact_page a#map_address:hover { color: #a52a2a; }
div#contact_page a#map_address:active { color: black; }

div#contact_page div#email_webmaster
{
  width: 100%;
  margin-top: auto; /* push to bottom */
  text-align: center;
  font-size: 0.8em;
}

div#contact_page div#email_webmaster hr
{
  width: 50%;
}

@media screen and (max-width: 600px)
{
  div#contact_page div.contact_item > div
  {
    font-size: 80%; 
  }

  div#contact_page div.contact_item img
  {
    max-height: 20px;
  }
}
