/* Seletor universal */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Seletor por elemento */
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  padding: 20px;
}

/* Seletor por ID */
#nome {
  font-family: 'Playfair Display', serif;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

/* Seletor por classe */
.header {
  text-align: center;
  margin-bottom: 20px;
}

/* Classe com estilo de fonte */
.destaque {
  font-style: italic;
}

/* Seletor por atributo */
a[target="_blank"] {
  text-decoration: underline;
  color: #0077cc;
}

/* Pseudo-classe */
a:hover {
  color: red;
}

/* Mais estilos */
section {
  background-color: white;
  padding: 15px;
  margin-bottom: 15px;
  border-radius: 10px;
}

/* Negrito */
h2 {
  font-weight: bold;
  margin-bottom: 10px;
}

/* Lista */
ul {
  list-style-type: square;
  padding-left: 20px;
}

/* Imagem */
img {
  border-radius: 10px;
}

/* Experiência */
.item {
  margin-top: 10px;
}

.periodo {
  font-style: oblique;
  color: gray;
}