body {
  font-family: 'Roboto', sans-serif;
  margin: 40px;
  line-height: 1.6;
  color: #333; /* Default text color for the body */
  background-color: #1a1a1a; /* Black outside */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.cv-container {
  max-width: 800px;
  padding: 40px;
  background: #fff; /* White inside */
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2); /* Subtle black shadow */
  text-align: center;
}

h1 {
  font-size: 3em;
  margin-bottom: 0.2em;
  color: #222; /* Dark color for h1 inside white container */
}

h2 {
  font-size: 1.8em;
  margin-top: 1.5em;
  margin-bottom: 0.8em;
  color: #444; /* Dark color for h2 inside white container */
  border-bottom: 1px solid #eee; /* Light border for h2 */
  padding-bottom: 0.5em;
}

p {
  font-size: 1.1em;
  margin-bottom: 1em;
  color: #333; /* Dark color for paragraph text inside white container */
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

li {
  margin-bottom: 0.5em;
  font-size: 1em;
  color: #333; /* Dark color for list item text inside white container */
}

a {
  color: #007bff; /* Blue for links inside white container */
  text-decoration: none;
}

a:hover {
  color: #0056b3; /* Darker blue on hover for links */
  text-decoration: underline;
}

.name {
  font-weight: 700;
}

.title {
  font-size: 1.2em;
  color: #666; /* Dark color for title inside white container */
  margin-bottom: 2em;
}

.social-links a {
  display: inline-block;
  margin: 0 10px;
  font-size: 1.5em;
  color: #007bff; /* Blue for social links inside white container */
}

.social-links a:hover {
  color: #0056b3; /* Darker blue on hover for social links */
}

@media (max-width: 768px) {
  body {
    margin: 20px;
  }
  .cv-container {
    padding: 20px;
  }
  h1 {
    font-size: 2.5em;
  }
  h2 {
    font-size: 1.5em;
  }
  p {
    font-size: 1em;
  }
}
