@import './reset.css';

html, body {
    height: 100%;
    box-sizing: border-box;
}

body {
    background-image: url('../images/ea-bg.jpeg');
    background-size: cover;
    background-repeat: no-repeat;
    font-family: 'Quicksand', sans-serif;
}


.ea-logo {
    text-align: center;
}

.ea-content {
    text-align: center;
    margin-top: 65px;
}

.ea-content h3 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}

.ea-content p {
    font-size: 16px;
    line-height: 22px;
    margin-top: 10px;
}

.ea-content p span {
    color: #5F8FCC;
}

.ea-content p .slogan {
    font-weight: bold;
}

.ea-content .ea-mail-to {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ea-content .ea-mail-to   {
    margin-top: 20px;
    color: #5F8FCC !important;
}

.ea-content .ea-mail-to  span {
    margin-left: 10px;
}

.privacy-policy {
    position: fixed;
    bottom: 2%;
    font-size: 14px;
    width: 100%;
    text-align: center;
    margin-left: -60px;
}

.privacy-policy a {
    color: #000;
    text-decoration: none;
}




@media screen and (max-width: 560px) {
    body {
        padding: 24px 8px;        
        background-position: center top;
    }

    .ea-logo {
        height: 19px;
    }

    .ea-logo img{
        height: 100%;
    }


    .ea-content {
        text-align: center;
        margin-top: 16px;
    }

    .ea-content h3 {
        font-size: 16px;
        font-weight: bold;
        margin-bottom: 5px;
    }

    .ea-content p {
        font-size: 14px;
        line-height: 17px;
        margin-top: 5px;
    }

    .privacy-policy {
        margin-left: 8px;
    }
}



@media screen and (min-width: 720px) {
    body {
        padding: 60px;        
        background-position: center top;
    }
}