
*{
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

body {
  font-family: Arial, sans-serif;
  background-color: #000000; /* Schwarzer Hintergrund */
  color: #ffffff; /* Weiße Schrift */
}

h1 {
  font-size: 31px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

a {
  color: #ffffff;
  text-decoration: none;
}

/* Navigation*/
nav {
  height: 30px;
  width: 100%;
  background-color: rgb(51, 51, 51);
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.144)
}

nav ul {
  float: center;
}

nav li {
  display: inline-block;
  margin-top: 5px;
}

nav li a {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  color: white;
  text-decoration: none;
  text-transform: none;
  display: inline-block;
}

nav a .hover {
  background-color: #000000;
  text-decoration: none;
}

nav ul li .active{
  color: rgb(111, 120, 211);
  text-transform: uppercase;

}

