/* General Layout */
html {
  background-color: #D9E2F3;
}
body {
  background-color: black;
  width: 80%;
  max-width: 1200px;
  margin: 0 auto;
}
html, body {
  padding: 0;
}



/* Typography */
html {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  font-size: 10px;
}
h1 {
  font-size: 3rem;
  text-align: center;
  text-shadow: 1px 1px 2.5px black;
  margin:auto auto 0px auto;
}
h2 {
  margin: 0px;
  font-size: 2rem;
}
h3 {
  font-size: 1.7rem;
}
p, li, td, th {
  font-size: 1.5rem;
  line-height: 1.5;
}
caption {
  font-size: 1.7rem;
  font-weight: 700;
}
a {
  text-decoration: none;
}
article a:visited {
  color: #DB00DB;
}
a:hover {
  color: red;
  text-decoration: underline;
  /*border-top: 1px solid blue;
  border-bottom: 1px solid blue;*/
}



/* Header Layout */
header {
  background-color: black;
}



/* Nav Layout */
nav ul {
  padding: 0;
  list-style-type: none;
  display: flex;
}
nav li {
  font-size: 1.8rem;
  display: inline;
  text-align: center;
  flex: 1;
}
nav a {
  background-color: black;
  color: yellow;
  display: block;
  font-weight: bolder;
  border: 1px solid yellow;
  text-shadow: 0px 0px 2px yellow;
  transition: background-color 0.5s;
}
nav a:hover {
  color: red;
  background-color: yellow;
  cursor: pointer;
  border: 1px solid yellow;
  text-shadow: 0px 0px 1px red;
}
nav a:active {
  background: linear-gradient(0deg,	black, #6E6E00,	black);
  -webkit-box-shadow: 0px 0px;
  box-shadow: 0px 0px;
}


/* Main layout */
article {
  background-color: #D9E2F3;
}
.testimonial {
  font-size: 1.3rem;
  float: left;
  padding: 3px;
  background-color: rgba(255,255,255,0.30);
  border-radius: 6px;
  width: 47%;
  margin: 1%;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
  box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);}
section {
  clear: both;
}
.loungeroom {
  width: 200px;
  text-align: center;
  float: right;
  background-color: #ebeff7;
  border-radius: 25%;
  padding: 0 5px;
  transform: rotate(10deg);
  -webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
  box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
}
.loungeroom h3 {
  margin: 0;
  color: navy;
  font-weight: 900;
  font-size: 2rem;
}
#steil_promo {
  float: left;
  margin: 0 5px 15px 0;
  border: solid 2px black;
  max-width: 40%;
  -webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
  box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
}
.icon_promo {
  width: 5%;
  min-width: 40px;
  opacity: 0.7;
  border-style: outset;
  border-width: 3px;
}
a:hover .icon_promo {
  opacity: 1;
}
.promo_icons {
  text-align: center;
  cursor: pointer;
}
.expand {
  display: none;
}
.btn {
  padding: 2 4px;
}

/* Footer Layout */
footer {
  color: #D9E2F3;
  text-align: center;
  font-size: small;
}
#footer_media {
  position: fixed;
  top: 0px;
  right: 0px;
}
footer .footer_links a {
  color: yellow;
  font-weight: bold;
  padding-left: 5px;
  padding-right: 5px;
}
footer .footer_links a:hover {
  color: red;
  background-color: yellow;
}



/* Mobile Device Layout */
@media screen and (max-width: 950px) {
	
  body {
    width: 100%;
    margin: 0 auto;
  }
  nav ul {
    display: block;
    width: 100%;
  }
  nav li {
    width: 100%;
    display: block;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
  }
  p, li, td, th, caption {
    font-size: 2rem;
  }
  footer {
    font-size: 2rem;
  }
  #footer_media {
    position: relative;
  }
  #footer_media img {
    width: 40px;
  }
  .loungeroom {
    width: 150px;
  }
  .loungeroom p {
    font-size: 2rem;
  }
  .testimonial {
    font-size: 2rem;
    display: block;
    float: none;
    padding: 3px;
    background-color: rgba(255,255,255,0.30);
    border-radius: 6px;
    width: 100%;
    margin: 0;
    -webkit-box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
    box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);}
.loungeroom {
    display: block;
    width: 200px;
    text-align: center;
    float: right;
    background-color: #ebeff7;
    border-radius: 10%;
    padding: 0 5px;
    transform: rotate(0deg);
    box-shadow: 2px 2px 10px 0px rgba(7,7,7,0.55);
    clear: both;
  }
.icon_promo {
    width: 10%;
    min-width: 40px;
}
article {
    padding: 0 4px;
  }
}
