@charset "UTF-8";

*{
	margin:0;
	padding:0;
}

  body {
    margin: 0;
    height: 100vh;              /* gesamte Höhe nutzen */
    display: flex;              /* Flexbox aktivieren */
    justify-content: center;    /* horizontal zentrieren */
    align-items: center;        /* vertikal zentrieren */
	background-image: url(https://dirk-olaf-wexel.de/img/dunkelgrau-dow.jpeg);  /* dunkelgrauer Hintergrund */     
    font-family: Arial, sans-serif;
  }

  .adresse {
  	font-family: Arial, Helvetica, sans-serif;
    text-align: left;           /* linksbündig */
    font-size: 12pt;
    color: white;
    letter-spacing: 1px;
    line-height: 1.6;           /* etwas mehr Zeilenabstand */
  }
  a.adresse:link,
  a.adresse:visited,
  a.adresse:active{
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: normal;
	color: #888;
	text-decoration: none;
	letter-spacing: 1px;
}
 a.adresse:hover {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12pt;
	font-weight: normal;
	color: #FFFFFF;
	text-decoration: none;
	letter-spacing: 1px;
}

a[href^="tel"] {
  color: #888;
  text-decoration: none; /* wenn du die Unterstreichung auch weg haben willst */
}

a[href^="tel"]:hover,
a[href^="tel"]:active,
a[href^="tel"]:visited {
  color: #888;
  text-decoration: none; /* Unterstreichung weg */
}