    body {
    background-image: url("background.gif");
    background-repeat: repeat-y;
    background-attachment: fixed;
    background-position: center;
    background-size: 110% 100%;
    background-position-y: bottom;
}

.glow {
    -webkit-filter: drop-shadow(15px 15px 7px rgba(1, 1, 1, 0.5));
    filter: drop-shadow(15px 15px 7px rgba(1, 1, 1, 0.5));
}

html,
body {
    margin: 0;
    color: white;
    font-size: 20px;
}

#myVideo {
    position: fixed;
    right: 0;
    bottom: 0;
    min-width: 100%;
    min-height: 100%;
  }

/* HEADER STUFF */


/* ALLGEMEIN */

#wrapper {
    min-height: 100%;
    width: 100%;
}

.content {
    width: 90%;
}

/* CONTENT PIECE */

.title {
    font-size: 1.2em;
    background-color: yellow;
    color: blue;
    font-weight: bold;
    padding: 0px 5px;
    font-family: 'cruiser_fortress_chromeRg';
}


/* LINKS */

a:link {
    color: white;
    font-family: 'helvetica';
    font-style:italic;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    background-color: blue;
    padding: 7px;
    margin: 10px;
    line-height: 1.5em;
}

a:visited {
    color: white;
    text-decoration: none;
}

a:active {
    color: white;
    text-decoration: none;
}

a.singletext {
    color: blue;
    font-size: 1.3em;
    padding: 10px;
    background-color: black;
}

a.networktext {
    color: fuchsia;
    background-color: white;
}

a.socialmedias {
    color: floralwhite;
    background-color: fuchsia;
}

a:hover {
    border: 6px solid white;
}


