body {
    margin: 0;
    background: #dfe6b7;
    font-family: 'Segoe UI', sans-serif;
    color: #222;
}

/* CONTENEDOR */
.cv {
    max-width: 650px;
    margin: 60px auto;
    background: rgb(230, 226, 226);
    padding: 40px;
}

/* HEADER */
header {
    text-align: center;
    margin-bottom: 40px;
}

/* FOTO */
.foto {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
}

/* NOMBRE */
h1 {
    margin: 0;
    font-size: 26px;
    font-weight: 600;
}

/* INFO */
header p {
    color: #777;
    font-size: 14px;
}

/* SECCIONES */
section {
    margin-bottom: 30px;
}

/* TITULOS */
h2 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #999;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
    margin-bottom: 10px;
}

/* TEXTO */
p {
    line-height: 1.6;
    margin: 5px 0;
}

/* LISTA */
ul {
    padding-left: 20px;
}

li {
    margin-bottom: 5px;
}