@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500&family=Ubuntu:wght@400;500;700&display=swap');
body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background-color: #CDCDCD;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: #FFFFFF;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 2px solid #016064; /* Cor da borda alterada */
    border-radius: 15px; /* Bordas arredondadas */
}

.header-content {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.profile-picture img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-right: 20px;
}

.title-content {
    flex-grow: 1;
}

.title-content h1 {
    margin: 0;
}

.title {
    font-size: 1.2em;
    color: #666;
}

.contact {
    font-size: 0.9em;
    color: #333;
}

section {
    margin-bottom: 20px;
}

section h2 {
    border-bottom: 2px solid #016064; /* Linha abaixo do título alterada */
    padding-bottom: 5px;
    color: #333;
    background-color: #FFFFFF;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    margin-bottom: 15px;
}

li h3 {
    margin: 0;
    color: #333;
}

li p {
    margin: 5px 0;
}

/* Adição dos novos estilos */
.header-content,
.profile,
.experience,
.education {
    margin-bottom: 20px; /* Espaçamento entre seções */
}

.profile-picture img {
    border-radius: 50%; /* Bordas arredondadas para a imagem do perfil */
    width: 150px; /* Largura da imagem */
    height: 150px; /* Altura da imagem */
}

.title-content h1 {
    margin: 0; /* Remover margens */
    font-size: 24px; /* Tamanho da fonte */
}

.title-content p {
    margin: 5px 0; /* Margens entre parágrafos */
}

section ul {
    list-style-type: none; /* Remover marcações das listas */
    padding: 0; /* Remover padding */
}

section ul li {
    margin-bottom: 10px; /* Espaçamento entre itens da lista */
}

section ul li h3 {
    font-size: 18px; /* Tamanho da fonte */
    margin: 0 0 5px 0; /* Margens dos subtítulos */
}
