*{
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    box-sizing: border-box;
}

:root{
    --color-primary: #FFF;
    --color-primary-light: #555;
    --error-color: #721c24 ;
    --error-background: #F8D7DA;
    --success-color: #155724;
    --success-background: #d4edda;
}

body{
    background: #1e5799; 
    /*background: linear-gradient(to bottom,  #1e5799 0%,#5c42ed 50%); */
    height: 100vh;
    display: flex;
    flex-direction: column;
}


.container{
    margin:0 10px 10px 10px;
    padding:20px;    
    background-image: url(../img/emoji.svg);
    background-repeat: no-repeat; 
    min-height:100vh;
}

.container h1, .container h2, .container p{
    color:var(--color-primary);
}

.container h1{
    text-align: center;
    font-size: 2.5em;
    margin-bottom:20px;
}
.container h2{
    text-align:center;
    font-size: 1.5em;
    margin-bottom:20px;
}

.container p{
    margin:10px;
    font-size:1.2em;
    text-align: center;
    font-weight: bold;;
}


form{
    text-align:center;
    padding:30px 0;
}

form select{
    font-size:1.2em;
    padding:5px;
    border-radius:8px;
    width: 100%;
    white-space:pre-wrap;
    height:80px;
    margin-bottom:10px;
}

form button{
    font-size:1.2em;
    padding:10px;
    border-radius:3px;
    border:none;
    width: 100%;
}


.icon{
    width:24px;
    height: 24px;
    display:inline-block;
    background-size: 100%;
    background-repeat: no-repeat;
    vertical-align: middle;
}

.gear{
    background-image: url(../img/gear.svg) ;
}


.box-desculpa{
    background-color: #FFF;
    border-radius: 10px;
    padding:30px;
}

.box-desculpa p{
    color:#333;
    text-align: left;
}


.box-desculpa .desculpa{
    font-size: 1.9em;;
}

.compartilhar{
    text-align: right;
    margin-top:50px;
}

.compartilhar .icon{
    width: 48px;
    height: 48px;
    background-size: 100%;
    background-repeat: no-repeat;
    display:inline-block;
    margin:10px;
}

.compartilhar .whatsapp{
    background-image: url(../img/whatsapp.svg);
}
.compartilhar .twitter{
    background-image: url(../img/twitter.svg);
}

.compartilhar .facebook{
    background-image: url(../img/facebook.svg);
}

.compartilhar .code{
    background-image: url(../img/link.svg);
}


.banner-ad{
    text-align: center;
}


.lightbox-link-desculpa{
    position: absolute;
    background: #FFF;
    border-radius: 10px;
    padding:20px;
    box-shadow: 2px 2px 5px #333;
    
}

.lightbox-link-desculpa .copy-box{
    display: flex;
}

.lightbox-link-desculpa input{
    width:350px;
    padding:3px;
    border: 1px solid #CCC;
}
.lightbox-link-desculpa a{
    display:block; 
    text-align: left;
    margin-bottom: 5px;
    color:#333;
    font-size: 12px;
}


.btn-copy{
    background-image: url(../img/copy.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width:18px;
    height: 20px;
    display: inline-block;
    margin: 0 5px;
}

.btn-close{
    background-image: url(../img/times.svg);
    background-repeat: no-repeat;
    background-size: 100%;
    width:18px;
    height: 20px;
    display: inline-block;
    margin: 0 5px;
}


@media (min-width:900px){

    body{
        align-items: center;
    }

    .container{
        width:900px;
        padding: 20px 60px;
    }
    .menu-topo{
        flex-flow: row; 
    }  
    form{
        padding: 30px;
    }

    form select{
        width: auto;
        height: auto;
    }
    
    form button{
        width:auto;
        padding:5px 10px;
    }

}