html {
    width:100%;
    height:100%;
     overflow: hidden;
}

body {
    width:100%;
    height:100%;
    font-family: 'Roboto', sans-serif;
    font-size:100%;
    background: black radial-gradient(#dd1a32, #000000);
    color:white;
     overflow: hidden;
}

*, *:before, *:after {
    box-sizing: inherit;
}

#wrapper {
    position: fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    text-align:center;
}

#main:before{
    content: '';
    display: inline-block;
    height:100%;
    margin-right:0;
    vertical-align:middle;
    width:1px;
}

#main {
    position: fixed;
    width:100%;
    height:100%;
    top:0;
    left:0;
    text-align:center;
    max-width:100%;
}



#header {
    position:relative;
    top:-1em;
    display:inline-block;
    text-align:center;
    vertical-align:middle;
    width:90%;
    max-width:100%;
}

#header img {
    max-width: 100%;
} 

.no-wrap {
    white-space: nowrap;
}

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

a:hover {
    color: azure;
    text-decoration: underline;
}