*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Trebuchet MS';;
    color: #030329;

}

body{
    background: rgb(216, 216, 216);
}
.home{
    margin: 20px;
    font-size: 40px;  
}


.center{
    margin: 0 auto;
    max-width: 450px;


}

header{
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    padding: 20px;
    

}
header h2{
    letter-spacing: 5px;
    font-size: 26px;
}

.img-perfil .img{

    justify-content: 50%;
    display: inline-block;
    box-shadow: 2px 3px rgba(9, 0, 41, 0.2);
    border-radius: 50%;
    width: 200px;
    height: 200px;


}

.botoes{
    display: grid;
    justify-content: center;
    font-size: 22px;
}
a{
    text-decoration: none;
    color: #030329;
}
.item01,.item02,.item03,.item04,.item05{
    background-color: #ccc;
    
    box-shadow: 1px 1.5px ;
    margin: 10px auto;
    padding: 8px 10px;
    border-radius: 8px;
    width: 270px;
}
.item01:hover,.item02:hover,.item03:hover,.item04:hover,.item05:hover{
    transition: all .3s;
    
    background: #c2c2c2;
    transform: scale(50px);
    padding: 10px 15px;
    cursor: pointer ;
}
