/* CSS do html */

body{
    margin: 0;
    padding: 0;
    font-family: arial, sans-serif;
    background-color: #585858;
    color: #333;
}

header{
    background-color: #222;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-container{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.profile-photo{
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid white;
}

section{
    margin: 40px;
    padding: 20px;
    background-color: rgb(170, 170, 170);
    border-radius: 10px;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.15);
}

.paragraph_about{
    font-weight: 610;
}

.lista{
    margin-left: 30px;
    font-weight: 610;
    display: list-item;
}

.titles{
    font-size: 19px;
    font-weight: bold;
}

footer{
    text-align: center;
    padding: 10px;
    background: #222;
    color: white;
}