@import url(http://fonts.googleapis.com/css?family=Roboto:400,100,300,500,700);

body{
    height:100vh;
}

.bgImg {
    margin: 0!important;
    background-color: #004dff;
    background-image: url(/image/synthesis_screen_Large.jpg);
    height: 140%;
    background-position-x: center;
    background-size: 100%;
    background-repeat: no-repeat;
}
.mailAdd{
    padding-top: 100px;
    padding-right: 100px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.mailAdd a{
    color: white;
    font-size: 30px;
    text-decoration: none;
}

@media only screen and (max-width: 1350px) {
    .mailAdd{
        padding-top: 60px;
    }
    
    .mailAdd a{
        font-size: 20px;
    }
}

@media only screen and (max-width: 1024px) {
    .bgImg {
        background-image: url(/image/synthesis_screen-mobile_Medium.jpg);
        height: 150vh;
        background-size: cover;
    }
    .mailAdd{
        padding-right:0!important;
        padding-top: 500px;
        align-items: center;
    }
    
    .mailAdd a{
        font-size: 30px;
    }
}
@media only screen and (max-width: 767px) {
    .mailAdd{
        padding-top: 400px;
    }
    body{
        height: 100vh;
        width: 105vw;
    }
    .bgImg {
        width: 105vw;
        background-size: cover;
    }
    .mailAdd a{
        font-size: 20px;
    }

}




