body{
    color: #FFF;
    font-family: Roboto, sans-serif;
    background-color: #4858b4;
}
.header{
    height: 60px;
    display: inline-block;
    width:100%;
    margin-bottom: 100px;
}
.logo{
    height: 60px;
    line-height: 60px;
    display: inline-block;
    background-image: url(logo.jpg);
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: auto 70%;
    background-color: #fff;
    border-radius: 3px;
    float: left;
    color: rgb(20, 20, 20);
    padding: 0 20px 0 60px;
    font-weight: bold;
    font-size: 20px;
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.1);
}
.store{
    height: 60px;
    width: 190px;
    display: inline-block;
    background-image: url(store.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: auto 100%;
    background-color: #fff;
    border-radius: 3px;
    float: right;
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.1);
}
.container{
    width: 96%;
    max-width: 1100px;
    margin: 50px auto 0;
    text-align: center;
}
.title{
    text-transform: uppercase;
    font-weight: 100;
    font-size: 40px;
    line-height: 50px;
    color: #F4FAFF;
    opacity: 0.9;
}
.action{
    display: inline-block;
    height: 60px;
    background-color: #FFF;
    line-height: 60px;
    padding: 0px 20px 0px 80px;
    background-image: url(logo.jpg);
    background-repeat: no-repeat;
    background-position: left center;
    background-size: auto 60px;
    text-decoration: none;
    color: black;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0px 2px 4px 4px rgba(0, 0, 0, 0.1);
    border-radius: 3px;
    transition-duration: 0.3s;
    margin: 30px 0;
    position: relative;
    font-size: 14px;
}
.action:hover{
    background-color:rgb(200, 200, 200);
}
.action::after{
    content:"";
    position: absolute;
    display: block;
    height: 60px;
    width: 1px;
    background-color: rgb(200, 200, 200);
    top: 0;
    left: 60px;
}
.mentions{
    opacity: 0.7;
    font-size: 16px;
}
@media only screen and (max-width: 600px) {
    .title{
        font-size: 20px;
        line-height: 25px;
    }
}