body{
margin:0;
font-family:Arial, Helvetica, sans-serif;

/* background gambar */
background-image:url("background.jpg");
background-size:cover;
background-position:center;
background-repeat:no-repeat;
height:100vh;
}

/* kotak CV */
.container{
width:850px;
margin:40px auto;
background:#e6e6e6;
padding:40px;
border-radius:10px;
}

/* header */
.header{
display:flex;
justify-content:space-between;
align-items:center;
}

/* nama */
.nama h1{
margin:0;
font-size:40px;
color:#555;
}

.nama p{
margin-top:5px;
color:#555;
}

/* foto */
.foto img{
width:120px;
height:120px;
border-radius:50%;
border:4px solid white;
}

/* judul bagian */
h2{
background:#5f6468;
color:white;
display:inline-block;
padding:6px 15px;
border-radius:8px;
margin-top:25px;
}

/* tabel */
table td{
padding:4px 10px;
}

/* list */
ul{
line-height:1.8;
}

/* paragraf */
p{
line-height:1.6;
}