* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: Arial, sans-serif;
background-color: #f4f4f4;
color: #333;
line-height: 1.6;
padding: 20px;
}
.container {
max-width: 900px;
margin: auto;
background: #fff;
padding: 20px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
header {
text-align: center;
margin-bottom: 20px;
}
header h1 {
font-size: 2.5em;
margin-bottom: 10px;
}
.contact-info {
text-align: center;
margin-bottom: 20px;
}
.contact-info p {
margin: 5px 0;
}
section {
margin-bottom: 30px;
}
section h2 {
background: #333;
color: #fff;
padding: 10px;
margin-bottom: 15px;
}
.education-item,
.experience-item {
margin-bottom: 15px;
}
.education-item h3,
.experience-item h3 {
font-size: 1.2em;
margin-bottom: 5px;
}
.education-item p,
.experience-item p {
margin-bottom: 5px;
}
/* Updated Skills Section */
.skills-container {
display: flex;
flex-wrap: wrap;
gap: 20px;
}
.skill-category {
flex: 1;
min-width: 250px;
}
.skill-category h3 {
background-color: #555;
color: #fff;
padding: 8px;
margin-bottom: 10px;
font-size: 1.1em;
}
.skill-category ul {
list-style: none;
padding-left: 20px;
}
.skill-category ul li::before {
content: "• ";
color: #333;
}