html
{
    width: 100%;
    height: 100%;
}

body
{
    width: 100%;
    height: 100%;
    image-rendering: crisp-edges;
    text-rendering: optimizeLegibility !important;
    -webkit-font-smoothing: antialiased !important;
    background: #240c35 url(./images/bg.jpg) no-repeat ;
    background-size: cover;
}

*{
    box-sizing: border-box;
    outline: none;
    margin: 0;
    padding: 0;
}

#root
{
    width: 100%;
    min-height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.box
{
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 50px 20px;
}

.brand
{
    display: inline-block;
    width: 185px;
    height: 188px;
    overflow: hidden;
    text-indent: -9999px;
    background: url(./images/brand.png) no-repeat center center;
    background-size: contain;
}

.message
{
    margin-top: 85px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: bolder;
    color: #fff;
    text-transform: uppercase;
    padding: 0 30px;
}

.social
{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 10px 0;
}

.btn
{
    display: inline-block;
    text-indent: -9999px;
    width: 34px;
    height: 34px;
    margin: 0 10px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.btn__facebook
{
    background-image: url(./images/fb.png);
}

.btn__instagram
{
    background-image: url(./images/inst.png);
}

.btn__whatsapp
{
    background-image: url(./images/whats.png);
}

footer
{
    text-align: center;
    margin-top: 75px;
}

.address
{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: normal;
    color: #fff;
}
.address .bar
{
    display: none;
}

.phone
{
    text-align: center;
    font-family: 'Roboto', sans-serif;
    font-size: 26px;
    font-weight: bolder;
    color: #fd3a0e;
}

@media all and (min-width: 460px)
{
    .message
    {
        padding: 0;
    }
    .address .bar
    {
        display: inline;
    }

    .address br
    {
        display: none;
    }
}


