body {
    font-family: Quicksand;
    margin:0; 
    /* width: 100%;*/
    height: 100%; 
    padding: 0px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAIAAAACCAYAAABytg0kAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABZJREFUeNpi2r9//38gYGAEESAAEGAAasgJOgzOKCoAAAAASUVORK5CYII=);
    position:relative;
}

.float-container {
    height: 100%;
    position: absolute;
    top: 50%;
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.float-child {
    width: 50%;
    float: left;
    margin-top: 200px;
    text-align: center;
}  

#title{
    position: absolute;
    top: 5px;
    left: 5px;
    /* color: white; */
    text-align: center;
    left: 50%;
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
}
#firstpart{
    font-size:90px;
}
#subpart{
    font-size:24px;
}
#subpart span, .float-child span { 
    background-color:#d72638ff; 
    color:white;
}

.imagedropshadow {
    padding: 5px;
    border: solid 1px #EFEFEF;
    background: white;
}
a:hover img.imagedropshadow {
    border: solid 1px #CCC;
    -moz-box-shadow: 1px 1px 5px #999;
    -webkit-box-shadow: 1px 1px 5px #999;
    box-shadow: 1px 1px 5px #999;
}
