/* styles.css */

body {
  margin: 0;
  padding: 0;
  font-family: Georgia, serif;
  background-color: #f9f7f4;
  color: #222;
  line-height: 1.4;
}

.wrapper {
  max-width: 800px;
  margin: 40px auto;
  padding: 30px 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

header {
  text-align: center;
  margin-bottom: 40px;
  border-bottom: 2px solid #222;
  padding-bottom: 20px;
}

header h1 {
  margin: 0;
  font-size: 3em;
  font-weight: bold;
  letter-spacing: 1px;
}

header .contact {
  margin-top: 10px;
  font-size: 0.9em;
  color: #555;
}

header .contact a {
  color: #222;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-bottom 0.2s;
}

header .contact a:hover {
  border-bottom: 1px solid #222;
}

.section {
  margin-bottom: 30px;
}

.section h2 {
  font-size: 1.4em;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 5px;
}

.section p {
  margin: 10px 0;
}

.project {
  margin-bottom: 20px;
}

.project-title {
  font-weight: bold;
  font-size: 1.1em;
  margin-bottom: 8px;
}

.project ul {
  list-style: disc inside;
  margin: 0;
  padding-left: 20px;
}

.skill-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.skill-list li {
  margin: 6px 0;
}

.skill-list strong {
  display: inline-block;
  width: 170px;
}

@media print {
  body {
    background-color: #fff;
  }
  .wrapper {
    box-shadow: none;
    margin: 0;
    padding: 0;
  }
}

