@charset "UTF-8";
html,
body {
  width: 100%;
  height: 100%; }

body {
  margin: 0px;
  padding: 0px;
  width: 100vW;
  height: 100vH;
  background-color: #fff;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  align-content: center; }
  body.stat {
    flex-direction: column !important;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    padding-top: 30px;
    flex-wrap: nowrap; }

#logo {
  background-image: url("../images/Logo-Stefanie-Leidl.png");
  width: 200px;
  height: 119px;
  background-size: cover;
  transition: all 0.5s ease-in-out;
  animation: opacitylogo 2s ease-in-out 1, pulse-grow 2s ease-in-out 1, positionlogo 2s ease-in-out 1 2s;
  transform: translate(0%, -10%); }

#logostat {
  background-image: url("../images/Logo-Stefanie-Leidl.png");
  width: 200px;
  height: 119px;
  background-size: cover;
  transition: all 0.5s ease-in-out;
  margin-bottom: 30px; }

#infos {
  position: absolute;
  bottom: 20px;
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  font-size: 14px;
  color: #8e1538;
  animation: positioninfos 3s ease-in-out 1;
  text-align: center; }
  #infos a {
    margin-top: 20px;
    font-size: 10px;
    display: inline-block;
    text-decoration: none;
    color: #c69777; }
    #infos a:hover {
      color: #e5bcca;
      text-decoration: none; }
    #infos a:visited, #infos a:focus {
      color: #c69777;
      text-decoration: none; }

#infosstat {
  font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
  font-size: 12px;
  color: #8e1538;
  text-align: center;
  padding-top: 30px;
  padding-bottom: 30px;
  margin-bottom: 30px; }
  #infosstat a {
    margin-top: 20px;
    font-size: 10px;
    display: inline-block;
    text-decoration: none;
    color: #c69777; }
    #infosstat a:hover {
      color: #e5bcca;
      text-decoration: none; }
    #infosstat a:visited, #infosstat a:focus {
      color: #c69777;
      text-decoration: none; }

#content {
  width: 80vW; }
  #content p, #content h1 {
    font-family: "Lucida Grande", "Lucida Sans Unicode", "Lucida Sans", "DejaVu Sans", Verdana, "sans-serif";
    font-size: 14px;
    color: #4f0c21;
    text-align: center; }
  #content h1 {
    transform: scale(2);
    margin-bottom: 20px; }

@keyframes positionlogo {
  0% {
    transform: translate(0%, 0%); }
  100% {
    transform: translate(0%, -10%); } }
@keyframes opacitylogo {
  0% {
    opacity: 0.3;
    transform: scale(0.3); }
  100% {
    opacity: 1;
    transform: scale(1); } }
@keyframes pulse-grow {
  0% {
    transform: scale(0.7); }
  50% {
    transform: scale(1.4);
    /* Vergrößert das Element */ }
  100% {
    transform: scale(1);
    /* Setzt die Größe zurück */ } }
@keyframes positioninfos {
  0% {
    transform: translate(0%, 300px);
    opacity: 0.3;
    scale: 0.3; }
  100% {
    transform: translate(0%, 0%);
    opacity: 1;
    scale: 1; } }
@media (min-width: 560px) {
  #logo {
    width: 300px;
    height: 178px; }

  #infos {
    font-size: 14px; }
    #infos a {
      font-size: 10px; }

  #infosstat {
    padding-top: 30px;
    font-size: 12px;
    padding-bottom: 30px; }
    #infosstat a {
      font-size: 10px; }

  #content {
    width: 80vW; } }
@media (min-width: 960px) {
  #logo {
    width: 500px;
    height: 297px; }

  #infos {
    font-size: 20px; }
    #infos a {
      font-size: 14px; }

  #infosstat {
    padding-top: 30px;
    font-size: 10px;
    padding-bottom: 30px; }
    #infosstat a {
      font-size: 9px; }

  #content {
    width: 50vW; } }
