* {
    margin: 0;
    padding: 0;
    outline: none;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    -o-user-select: none;
    user-select: none;
    cursor: default;
}

html, body { 
    width: 100%;
    height: 100%;
    display: table;
    overflow: hidden;
    background-color: rgb(0,0,0);
}

div#container {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}

div#content {
    width: 100%;
    display: inline-block;
}

div#top {
    width: 100%;
    height: 100px;
}

div#bottom {
    width: 100%;
    height: 100px;
}

div#middle {
    width: 90%;
    min-width: 1000px;
    margin: 0 auto;
    padding: 4px;
    background-color: rgb(255,255,255);
    border: 0px solid rgb(100,100,100);
    -webkit-border-radius: 10px 100px 10px 100px;
    -moz-border-radius: 10px 100px 10px 100px;
    -ms-border-radius: 10px 100px 10px 100px;
    -o-border-radius: 10px 100px 10px 100px;
    border-radius: 10px 100px 10px 100px;
    -webkit-box-shadow: 0px 0px 10px 2px rgb(255,127,0);
    -moz-box-shadow: 0px 0px 10px 2px rgb(255,127,0);
    -ms-box-shadow: 0px 0px 10px 2px rgb(255,127,0);
    -o-box-shadow: 0px 0px 10px 2px rgb(255,127,0);
    box-shadow: 0px 0px 10px 2px rgb(255,127,0);
}

div.text {
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 28px;
    text-shadow: rgba(100,100,100,0.6) 0px 0px 4px;
}

div.smallText {
    margin: 4px 0;
    font-family: "PT Sans Narrow", sans-serif;
    font-size: 18px;
    text-shadow: rgba(100,100,100,0.6) 0px 0px 4px;
}

a.link:link,
a.link:visited,
a.link:hover,
a.link:active {
    margin: 0 10px;
    text-decoration: none;
    -webkit-outline-style: none;
    -moz-outline-style: none;
    -ms-outline-style: none;
    -o-outline-style: none;
    color: rgb(0,0,0);
    cursor: pointer;
}

a.link:hover,
a.link:active {
    color: rgb(255,127,0);
}

svg#upper {
    width: 100%;
    height: 100px;
}

svg#lower {
    width: 100%;
    height: 100px;
}

stop.orange {
    stop-color: rgb(255,127,0);
    stop-opacity: 1;
}

stop.white {
    stop-color: rgb(255,255,255);
    stop-color: rgb(0,0,0);
    stop-opacity: 1;
}