/* Import */
@import url('https://fonts.googleapis.com/css?family=Libre+Barcode+39+Text');

/* Stänger av float och löser collapsing boxes syndrom */
.clearfix:after { 
    content: "."; 
    visibility: hidden; 
    display: block; 
    height: 0; 
    clear: both;
}

/* CSS-reset */
html {
    box-sizing: border-box;
}
*, *:before, *:after {
    box-sizing: inherit;
}
body, h1, h2, h3, h4, h5, h6, p, ul {
    margin: 0;
    padding: 0;
    font-family: 'Libre Barcode 39 Text', cursive;
}

/* Website layout */
body {
    background-color: black;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

div {
    
}

.container {
    color: rgba(0, 0, 0, 0.6);
}

a {
    text-decoration: none;
    color: white;
    transition: all 0.5s ease 0s;
    margin-left: auto;
    margin-right: auto;
}
a:visited {
    text-decoration: none;
    color: white;
}
a:hover {
    text-decoration: none;
    color: white;
}
a:focus {
    text-decoration: none;
    color: white;
}
a:hover, a:active {
    text-decoration: none;
    color: red;
    text-shadow: 2px 0 2px rgba(255, 0, 0, 0.25), 0 2px 2px rgba(255, 0, 0, 0.25), 2px 2px 2px rgba(255, 0, 0, 0.25);
}

.memberlist {
    margin: 40px auto 45px auto;
    position: relative;
    width: 100%;
    text-align: center;
}

.member {
    margin: 10px;
    display: inline-block;
    font-size: 40px;
    color: white;
    text-align: center;
    text-shadow: 1.5px 0 1.5px green, 0 1.5px 1.5px blue, 1.5px 1.5px 1.5px red;
    background: rgba(0, 0, 0, 0.6);
}

.group {
    position: relative;
    width: 100%;
    text-align: center;
}

.grouptext {
    font-size: 40px;
    color: white;
    text-align: center;
    text-shadow: 1px 0 1px green, 0 1px 1px blue, 1px 1px 1px red;
}

#video { 
    position: fixed;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: -100;
    transform: translateX(-50%) translateY(-50%);
}

audio { 
   display: none;
}