body{
    line-height: 1.5;
    font-family: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    font-weight: normal;
    color: rgba(0,0,0,0.87);
    padding:0;
    margin:0;
}

.header{
    min-height: 200px;
    padding-top:70px;
    background: #FF416C;  /* fallback for old browsers */
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);  /* Chrome 10-25, Safari 5.1-6 */
    background: linear-gradient(to right, #FF4B2B, #FF416C); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */

    color:#fff;
    width: 100%;
    position:relative;
}

.header-buttons{
    width:100%;
    position: absolute;
    bottom:15px;
    left:0;
    right:0;
    text-align:center;
}

.main-btn{
    background-color: #fff;
    color: #333;
    border:2px solid #fff;
    box-shadow: none;
    padding: 10px 20px;
    margin: 0 15px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .01em;
    box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
    cursor: pointer;
    transition: all .2s ease;
}

.main-btn:hover{
    background-color: transparent;
    color:#fff;
}

h1, h2{
    text-align: center;
    margin:0;
}

.header h1{
    font-size: 3rem;
}

.header h2{
    text-transform: uppercase;
    font-weight: 300;
    letter-spacing: 0.06em;
}

.divs-container{
    max-width:700px;
    margin:0 auto;
    display:flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content:center;
    margin-top:40px;
}

.div-jogo{
    height:200px;
    width:200px;
    border-radius:15px;
    margin:15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.16), 0 3px 6px rgba(0,0,0,0.23);
    transform:translateY(0);
    transition: all .2s ease;
    cursor: pointer;
}

.div-jogo:hover{
    box-shadow: 0 3px 13px rgba(0,0,0,0.26), 0 3px 13px rgba(0,0,0,0.33);
    transform:translateY(-3px);
}

.frase-ganhou{
    text-align:center;
    margin-top:120px;
}

.frase-ganhou h1{
    font-size: 55px;
    color: #333;
    line-height:60px;
}

.frase-ganhou .btn{
    background: #FF416C;
    background: -webkit-linear-gradient(to right, #FF4B2B, #FF416C);
    background: linear-gradient(to right, #FF4B2B, #FF416C);
    border: none;
    color: #fff;
    font-size: 13px;
    padding: 12px 30px;
}


@media only screen and (max-width:450px){
    .main-btn{
        margin:0 6px;
    }
}




@media only screen and (max-width:600px){
    .frase-ganhou h1 {
        font-size: 45px;
        padding: 0 30px;
    }

    .frase-ganhou{
        margin-top:80px;
    }    
}