@import url(https://fonts.googleapis.com/css?family=Istok+Web);
* {
    box-sizing: border-box;
    font-family: Istok Web, sans-serif;
}
body {
    background: #404040;
    font-weight: 100;
}
div#container {
    position: relative;
    width: 1000px;
    margin: auto;
}
div#header {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
}
div#content {
    position: relative;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    background: white;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
    padding: 2em 5em;
    margin-top: 2em;
}
div#content:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(0.5deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: -1;
    background: white;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
}
div#content:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-1deg);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.6);
    z-index: -1;
    background: white;
    background: linear-gradient(135deg, rgba(255,255,255,1) 0%, rgba(246,246,246,1) 47%, rgba(237,237,237,1) 100%);
}
img#discord-icon {
    position: relative;
    width: 96px;
    height: 96px;
    transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
    transition-duration: 0.25s;
    z-index: 1;
    -webkit-filter: drop-shadow(2px 2px 5px rgba(0,0,0,0.6));
    filter:         drop-shadow(2px 2px 5px rgba(0,0,0,0.6)); 
}
img#discord-icon:hover {
    transform: scale(1.1);
    z-index: 10;
}
p.centered {
    position: relative;
    width: 100%;
    text-align: center;
}
div#memberlist {
    position: relative;
    float: right;
    margin-left: 5em;
    padding: 1em;
    transform: rotate(-3deg);
    /* border-image: url('../img/charcoal.jpg') 0 27 27 27 round stretch; */
}
div.member {
    font-size: smaller;
    display: flex;
    align-items: center;
}
div.member img {
    height: 1.5em;
    width: auto;
    margin-right: 5px;
    border-radius: 0.75em;
}
div#memberlist:after {
    border: 0.1em solid transparent;
    border-image: url('../img/charcoal.jpg') 0 27 27 27 round stretch;
    
    /*border-radius: 0.25em 0.10em 0.5em 0.25em;*/
    transform: rotate(1deg);
    content: '';
    top:0px;
    left:0px;
    position:absolute;
    width:100%;
    height:100%;
    
  }
  div#memberlist:before {
    border-top: 0.1em solid transparent;
    border-image: url('../img/charcoal.jpg') 27 0 0 0 stretch round;
    /*border-radius: 1.5em;*/
    content: '';
    height: 3em;
    left: 0;
    top: 0;
    transform: rotate(1deg);
    width:100%;
    position:absolute;
  }
div.title {
    font-weight: bold;
    border-bottom: 1px solid black;
    margin-bottom: 5px;
}
.clearfix::after {
    content: " ";
    display: block;
    height: 0;
    clear: both;
}