/*
Colour light blue: #778ea8
Colour pink: #ff95ba
*/

html, body {
    height: 100%;
    width: 100%;
/*    min-width: 440px;this stops browser going too small*/
}
body { 
    background-color: white;
/*
    background-image: url(00images/bg_01.jpg);
    background-repeat: repeat-x;
    background-position: center top;
    background-size: cover;
    height: 100vh;  Ensures the element fills the viewport height 
*/
}

/*//// Text ////*/
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 11px;
    letter-spacing: 8px;
    color: #005928;
    text-transform: uppercase;
}

/*//// Links ////*/
a:link {
    color: #005928;
    text-decoration: none;
}
a:visited {
    color: #005928;
}
a:hover {
    color: #005928;
    text-decoration: underline;
    text-decoration-thickness: 0.1px; 
}
a:active {
}

/*//// div ////*/
.divlogo {
    padding-top: 90px;
    margin: auto;
    text-align: center;
}
.divEmail {
    padding-top: 60px;
    margin: auto;
    text-align: center;
}










