html,body
{
    width: 100%;
    height: 100%;
    margin: 0px;
    padding: 0px;
    overflow-x: hidden; 
}

body{
    width: 100vw;
    height: 100vh;
    background: -moz-linear-gradient(135deg, rgba(3,39,93,1) 0%, rgba(197,243,250,1) 100%); /* ff3.6+ */
    background: -webkit-gradient(linear, left top, right bottom, color-stop(0%, rgba(197,243,250,1)), color-stop(100%, rgba(3,39,93,1))); /* safari4+,chrome */
    background: -webkit-linear-gradient(135deg, rgba(3,39,93,1) 0%, rgba(197,243,250,1) 100%); /* safari5.1+,chrome10+ */
    background: -o-linear-gradient(135deg, rgba(3,39,93,1) 0%, rgba(197,243,250,1) 100%); /* opera 11.10+ */
    background: -ms-linear-gradient(135deg, rgba(3,39,93,1) 0%, rgba(197,243,250,1) 100%); /* ie10+ */
    background: linear-gradient(315deg, rgba(3,39,93,1) 0%, rgba(197,243,250,1) 100%); /* w3c */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#C5F3FA', endColorstr='#03275d',GradientType=1 ); /* ie6-9 */
    padding: 0px;
    overflow: hidden;
}

.masterWrapper{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.lineLogo{
    width: 50vw;
    max-width: 500px;
    padding: 10px;
}

.messageWrapper{
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    justify-items: center;
    align-items: center;
}

.boxLogo{
    width:75vw;
    max-width: 400px;
    box-shadow:  5px 10px 18px #888888;
}

h1{
    font-size: 4vh;
    text-align: center;
}

h2{
    margin-top: -1.5vh;
    font-size: 2vh;
    text-align: center;
}

.detailsWrapper{
    background-color: rgba(255,255,255,.4);
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid black;
}

.timeDetails{
    margin-left: 10px;
    margin-right: 10px;
}

.contactDetails{
    margin-left: 10px;
    margin-right: 10px;
}