/*
=====================================
Stylesheet für die Animation mit ECMA-Script
von *Torsten* aus ***Hettstedt***
Datei: jsApp.css
Datum: 2016-09-21
Author: Torsten Lücke
=====================================
*/
@keyframes einblenden {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes ausblenden {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
#container-div {
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 0%, 0.75);
  position: fixed;
  left: 0;
  top: 0;
  z-index: 1;
  animation-name: einblenden;
  animation-duration: 0.5s;
}
#container-div.ausblenden {
  animation-name: ausblenden;
  animation-duration: 0.5s;
  opacity: 0;
}
#container-div #content-container {
  text-align: center;
  margin: 10rem auto;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 50rem;
  position: relative;
}
#container-div #content-container > button {
  width: 1.5rem;
  height: 1.5rem;
  margin: 0 auto;
  position: absolute;
  right: -2.5rem;
  top: -2rem;
  font-weight: bold;
  border-radius: 0.75rem;
  border: white;
}
#container-div #content-container > .content {
  display: block;
  margin: auto;
  height: auto;
  width: 100%;
}
