html {
    height: 101%;
}

body {
  background-image: url('img/lios_engineering.svg');
  background-size: auto 80%;
  background-position: 10px center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, .7);
  z-index: -1;
  pointer-events: none; /* verhindert Klickblockade */
}

a, a:visited {
    color: #000;
    text-decoration: underline;
    font-weight: bold;
}

a.menuLink {
    font-size: 20pt;
}

a:hover {
    text-decoration: none;
}

header {
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: linear-gradient(to bottom , #b3d6ff , #FFF);
    border-bottom: 1px dashed #555;
}

nav {
    width: 1400px;
    height: 80%;
    overflow: scroll;
    position: fixed;
    top: 120px;
    right: 10px;
    background: linear-gradient(to right, rgb(255,255,255), rgb(200,200,2000));
    padding: 20px;
    border: 1px solid #000;
    border-radius: 10px;
    transition: all .3s;
    z-index: 80;
}

nav.nav {
    right: -1410px;
}

#navTrigger {
    position: fixed;
    top: 120px;
    right: 1420px;
    transition: all .5s;
    z-index: 80;
}

#navTrigger.navTrigger {
    right: 10px;
}

#dateDiv {
    color: #000;
    text-shadow: 1px 1px 1px #FFF;
    font-weight: bold;
    float: right;
    padding: 10px;
}

#date {
    float: right;
    margin: 10px;
}

img#logo {
    height: 100px;
    margin: 5px;
    transition: all .3s;
}

article {
    margin: 130px 25px 50px 25px;
}

footer {
    width: 100%;
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    background: #FFF;
    border-top: 1px solid #555;
    z-index: 10;
}

.form-group {
    font-weight: bold;
}

aside#aside {
    width: 490px;
    position: fixed;
    left: -10px;
    bottom: 60px;
    background: linear-gradient(to right , rgb(220,220,220) , rgb(255,255,255) , rgb(255,255,255));
    padding: 30px;
    border: 1px solid #000;
    border-radius: 10px;
    box-shadow: 3px 3px 3px #555;
    transition: all .3s;
    z-index: 80;
}

aside#aside.aside {
    left: -510px;
}

#asideTrigger {
    position: fixed;
    bottom: 60px;
    left: 500px;
    transition: all .5s;
    z-index: 80;
}

#asideTrigger.asideTrigger {
    left: -510px;
}

#asideTrigger.asideTrigger {
    left: 10px;
}

tr {
    border-top: 1px solid #555;
    border-bottom: 1px solid #555;
}

#cv {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to left, rgba(0,0,0,.2), rgba(0,0,0,0));
    cursor: not-allowed;
    z-index: 50;
}
#cv.cv {
    display: none;
}

#loading {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background: url(img/loading.gif) center center no-repeat rgba(0, 0, 0, .5);
    display: none;
    z-index: 100;
}