body{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    background-image: linear-gradient(rgb(91, 5, 99),#fff);
    font-family: Mulish;
}
.tabela{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
}
img{
    margin: 2px;
    width: 20%;
    transition: all .5s;
    border-radius: 10px;
}
img:hover{
    transform: scale(1.1,1.1);
}
header{
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 0 auto;
    background-color:rgb(129, 3, 146) ;
    border: 1px solid #fff;
}
header img{
    width: 10%;
    margin: 30px;
}
header p{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 2px;
    border: 1px solid #fff;
    /* line-height: 100px; */
    padding: 30px;
    box-sizing: border-box;
}

@media screen and (max-width:600px){
    header p{
        height: 40px;
        font-size: 10px;
        padding: 10px;
        margin-top: 20px;
    }
}