body, html {
    height: 100%;
}

.bg {
    background-image: url('../images/greenBackground.jpg');
    background-repeat:no-repeat;
    background-size:cover;
    height: 100%;
    background-position: center;
}

@font-face {
    font-family: latoLight;
    src: url(../fonts/Lato-Regular.ttf);
}

.emailBox{
    padding-top: 25vh;
}

.greenTitle {
    font-family: latoLight;
    /*font-size: 14px;*/
}

.greenTechLogo {
    background-repeat:no-repeat;
    background-size:cover;
    height: 100%;
}

#loader {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 10000;
    width: 150px;
    height: 150px;
    margin: -75px 0 0 -75px;
    border: 16px solid #f3f3f3;
    border-radius: 50%;
    border-top: 16px solid rgba(11, 91, 19, 0.77);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@-webkit-keyframes animatebottom {
    from { bottom:-100px; opacity:0 }
    to { bottom:0px; opacity:1 }
}

@keyframes animatebottom {
    from{ bottom:-100px; opacity:0 }
    to{ bottom:0; opacity:1 }
}