* {
  box-sizing: border-box;
}
@font-face {
  font-family: 'futura-md';
  src: url('futura-md.ttf');
}
:root {
  --font-default: "Arial", Liberation Sans, sans-serif;
  --font-primary: "Arial", Liberation Sans, sans-serif;
  --font-secondary: "Arial", Liberation Sans, sans-serif;
  --font-futura-md: "futura-md";
}

body {
  font-family: "Arial", sans-serif;
  background: #333;
  /* always zero out the body margins */
  margin: 0;
}
a { color: #ff5500;
  text-decoration: none;
}
a:hover { color: #2c89a0;
}
.main { box-shadow: 0 0 10px rgba(0, 0, 0, 0.9);
  background: #f1f1f1;
  max-width: 600px;
  margin: 0px auto;
  padding: 0px;
}
.box_1 { border-bottom: 2px solid #406080;
  background: #2c89a0;
  color: #fff;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px 20px 10px 20px;
}
.box_2 { display: block;
  max-width: 600px;
  background: #f1f1f1;
  margin: 0px auto;
  padding: 0px 20px 0px 20px;
}
.box_3 { border-top: 1px solid #ccc;
  color: #fff;
  max-width: 600px;
  background: #f1f1f1;
  margin: 30px 0px 20px 0px;
  padding: 20px 20px 0px 20px;
}
 /* images resüonsive */
.center { padding: 10px 0px 20px 0px;
}
img {
  width: auto;
  height: auto;
}
h1 { color: #fff;
  font-weight: 900;
  line-height: normal;
  margin-top: 0px;
  font-size: 22px;
}
h2 { color: #333;
  font-weight: 300;
  line-height: normal;
  margin-top: 0px;
  font-size: 16px;
}
h3 { color: #406080;
  font-weight: 900;
  line-height: normal;
  margin-top: 0px;
  font-size: 16px;
}
h4 { color: #333;
  font-weight: 600;
  line-height: normal;
  margin-top: 0px;
  font-size: 16px;
}
h5 { color: #ff0000;
  line-height: normal;
  margin: 30px 0px;
  font-size: 20px;
  font-family: var(--font-futura-md);
}
span a { float: left;
  margin: 10px auto;
  border: 1px solid #999;
  text-decoration: none;
  padding: 10px 14px;
  background: #ff5500;
  color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border-radius: 5px;
  font-weight: bold;
}
span a:hover { background: #2c89a0; color: #fff;
}
.spiegel { text-align: center;
  transform: scaleX(-1);
  -moz-transform: scaleX(-1);
  -webkit-transform: scaleX(-1.5);
}
p a { border: 0px solid #999;
  text-decoration: none;
  font-size: 5rem;
  color: #ff5500;
  border-radius: 0px;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.5);
}
p a:hover {  color: #2c89a0;
}
input[type=text], select, textarea {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background: #f1f1f1;
  margin-bottom: 20px;
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  resize: vertical;
}
input[type=submit] {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  border: 1px solid #999;
  margin-bottom: 20px;
  font-weight: bold;
  background-color: #ff5500;
  color: #fff;
  padding: 11px 14px;
  border-radius: 5px;
  cursor: pointer;
  float: right;
  font-size: 0.8rem;
  font-weight: bold;
}
input[type=submit]:hover {
  color: #f1f1f1;
  border: 1px solid #999;
  background-color: #2c89a0;
}
.form-controll {
  display: none;
}
form {
  padding-bottom: 30px;
}
.copyright { padding: 5px 0px 0px 0px;
  color: #333;
  text-align: left;
  font-weight: bold;
  font-size: 0.8rem;
}
/* Responsive 600px */
@media screen and (max-width: 600px) {
  .col-25, .col-75, input[type=submit] {
    width: 100%;
    margin-top: 0;
  }
}


/* media query */

@media screen and (max-width: 750px) {
  /* background box */
  body {
    background: #333;
  }
}

@media screen and (max-width: 500px) {
  /* margin & padding */
  .wrapper {
    margin: 1rem auto;
    padding: 1rem;
  }
  div {
    padding: 0.5rem 1rem;
  }
}
