section {
    width: 100%;
    height: auto;
    font-size: 1.3em;
}
section h2 {
    text-align: center;
    color: rgb(32,129,201);
}
section div.bx-wrapper {
    width: 500px;
    height: auto;
    margin: 20px auto;
    background: #fff;
    border-radius: 16px;
    padding: 60px;
    box-shadow: 10px 10px 30px rgba(30,42,61,.15);
}
section p.infos {
    color: rgb(32,129,201);
}

a.google {
    width: 500px;
    text-align: center;
    margin: 30px auto;
    display: block;
    padding: 16px 44px;
    border: none;
    background: rgb(32,129,201);
    border: solid 1px rgb(32,129,201);
    background: rgb(32,129,201);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    border-radius: 8px;
    color: #fff;
    font-family: 'Lato', sans-serif;
    transition: all 0.5s ease;
}
a.google:hover {
    color: rgb(32,129,201);
    background: #fff;
    transition: all 0.5s ease;
}

@media screen and (max-width: 500px) {
    a.google, 
    section div.bx-wrapper {
        width: 90%;
    }
}