﻿body {
		background-image: url('http://www.wetterquiz.de/hintergrund.jpg'); 
	}
	.menu-wrapper {
		font-size: large;
		font-family: Verdana, Geneva, sans-serif;
	}

  p {
    font-family: Verdana, Geneva, sans-serif;
  }

  .logo {
    max-height: 200px;
    width: auto;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }

  .logo-animiert {
    object-fit: contain;
    max-height: 200px;
  }

     .footer-wrapper {
        font-size: 1.5rem;
        font-family: Verdana, Geneva, sans-serif;
    }

    .container {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 20px;
      gap: 20px;
    }
    .box {
      flex: 1;
      height: auto;
      border: 1px solid #ccc;
      padding: 10px;
      box-sizing: border-box;
    }

	img {
		display: inline-block;
		width: 100%;
		height:100%;
	}

    .reihe {
        display: flex;
    }

    .spalte {
        border: 1px solid;
        width: 468px;
        height: 60px;
    }
	

    .errorbox {
      color: red;
      font-size: 30px;
    }

    .ms-color2-main {
	border-left-style: none;
	border-right-style: none;
	border-top-style: none;
	border-bottom: 1.5pt solid black;
	background-color: silver;
}
.ms-color2-even {
	color: black;
	border-style: none;
	background-color: #FFFFEF;
}


    .test-menu { 
  background: #008000;
  margin: 5px auto 0; 
  padding: 0; 
  list-style: none; 
  display: table;
  width: 100%;
  text-align: center;
}
.test-menu li { 
  display: table-cell; 
  position: relative; 
  padding: 5px 0;
}
.test-menu a {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.15em;
  
  display: inline-block;
  padding: 15px 20px;
  position: relative;
}
.test-menu a:after {    
  background: none repeat scroll 0 0 transparent;
  bottom: 0;
  content: "";
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  background: #fff;
  transition: width 0.3s ease 0s, left 0.3s ease 0s;
  width: 0;
}
.test-menu a:hover:after { 
  width: 100%; 
  left: 0; 
}
@media screen and (max-height: 300px) {
	.test-menu  {
		margin-top: 10px;
	}
}

@media screen and (max-width: 1100px) {
  .test-menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .test-menu li {
    display: block;
    width: 100%; 
    text-align: center;
  }
}