﻿* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    height: 100%;
    position: relative;
    margin: 0;
    padding: 0;
}

body {
    background-color: #0A7485;
    color: #FCFDFE;
}

#centerDiv {
    position: relative;
    top: 50%;
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
}

#logoImage {
    max-width: 1158px;
    width: 66%;
}

#summary-about,
#summary-contact
 {
    font-family: 'Roboto', 'Calibri', 'Helvetica Neue', sans-serif;
    font-weight: lighter;
    font-size: 15pt;
    text-align: justify;
    width: 50%;
    margin: 1em auto;
}

#summary-contact a {
    color: #fff;
    text-decoration: none;
}
#summary-contact a:hover {
    text-decoration: underline;
}