/* GLOBAIS ****************** */
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: url(/img/bg.png) center center / cover repeat;
}

/* CONTEÚDO *****************/
main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
    font-family: 'Roboto', sans-serif;
    
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 550px;
    flex-direction: column;
    border-radius: 4px;
    -webkit-box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    box-shadow: 0 3px 5px -1px rgba(0,0,0,.2),0 6px 10px 0 rgba(0,0,0,.14),0 1px 18px 0 rgba(0,0,0,.12);
    overflow: hidden;
}

.logo {
    background: url(/img/bg.png) center center / cover repeat;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5rem 0 5rem 0;

}

.description {
    padding: 1.5rem 0 1rem 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #fff;
    width: 100%;
    text-align: center;
    
}

.description h1 {
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.description p {
    letter-spacing: 0.5px;
    font-weight: 100;
    margin-bottom: 1rem;

}
.description .link-mrx {
    text-decoration: none;
    color: rgba(0,0,0,.87);
    padding: 10px 10px 10px 10px;
    border-radius: 5px;
    transition: 0.3s;
    cursor: pointer;
    /* font-weight: 500; */
    letter-spacing: 0.1rem;
    font-family: 'Roboto',sans-serif;
    line-height: 1.5;  
    font-size: 13px;
    font-weight: bold !important;



}

.description .link-mrx:hover {
    background-color: rgb(241, 238, 238);
}

.description ul {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
    letter-spacing: 0.5px;
    font-weight: 100;
    margin-bottom: 1rem;
}

.description a {
    text-decoration: none;
    color: black;
}

@media (max-width:600px){
    .logo {
        background: transparent;
        }
    .container {
        box-shadow: none;
        -webkit-box-shadow: none;
    }
    .description {
        background: transparent;
        color: #fff;
    }
    .description a {
        color: #fff;
    }
    .description .link-mrx {
        color: #fff;
    }
}