body {
  font-family: cursive, Arial, sans-serif;
  background: #23272a;
  margin: 0;
  padding: 0;
  color: #fff;
}
.cv-container {
  max-width: 800px;
  margin: 40px auto;
  background: #2c2f33;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  border-radius: 8px;
  padding: 32px;
}
.header {
  display: flex;
  align-items: center;
  border-bottom: 2px solid #3fa34d;
  padding-bottom: 24px;
  margin-bottom: 24px;
  margin: 10px;
}
.profile-pic {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 30px;
  border: 3px solid #3fa34d;
  transition: transform 0.3s, box-shadow 0.3s;
}
.profile-pic:hover {
  transform: scale(1.1) rotate(-1deg);
  box-shadow: 0 0 20px 0 #3fa34d99;
}
.header-info h1 {
  margin: 0;
  font-size: 2.2em;
  color: #3fa34d;
}
.header-info p {
  margin: 8px 0 0 0;
  color: #e0e0e0;
}
.section {
  margin-bottom: 28px;
  background-color: rgb(49, 61, 61);
  padding: 15px;
  margin: 10px;
  border-radius: 20px;
  border-left: #3fa34d solid 3px;
}
.section-title {
  font-size: 1.2em;
  color: #3fa34d;
  margin-bottom: 10px;
  font-weight: bold;
  letter-spacing: 1px;
  font-family: "Franklin Gothic Medium", "Arial Narrow", Arial, sans-serif;
}
ul {
  padding-left: 20px;
}
.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.skill {
  background: #3fa34d;
  color: #fff;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 0.98em;
  font-weight: 500;
  transition: background 0.3s, color 0.3s, transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.skill:hover {
  background: rgb(49, 61, 61);
  color: #3fa34d;
  transform: scale(1.04);
  box-shadow: 0 0 8px 0 #3fa34d;
}
@media (max-width: 670px) {
  .cv-container {
    padding: 10px;
  }
  .header {
    flex-direction: column;
    align-items: flex-start;
  }
  .profile-pic {
    margin-bottom: 16px;
    margin-right: 0;
  }
}

@media (max-width: 500px), (max-width: 670px) and (orientation: portrait) {
  .cv-container {
    padding: 6px;
    border-radius: 0;
    box-shadow: none;
    margin: 0;
    max-width: 100vw;
  }
  .header {
    flex-direction: column;
    align-items: center;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom-width: 1px;
  }
  .profile-pic {
    width: 90px;
    height: 90px;
    margin-bottom: 10px;
    margin-right: 0;
  }
  .header-info h1 {
    font-size: 1.3em;
    text-align: center;
  }
  .header-info p {
    font-size: 0.95em;
    text-align: center;
  }
  .section {
    padding: 8px;
    margin-bottom: 14px;
    border-radius: 12px;
  }
  .skills-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
  }
  .skill {
    font-size: 0.95em;
    padding: 6px 10px;
    border-radius: 12px;
    text-align: center;
  }
}
