body {
  margin: 0;
  font-family: sans-serif;
  background-color: #f5f5f5;
  color: #333;
}

.container {
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
}

header {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 60px 20px;
}

header h1 {
  font-size: 42px;
  margin-bottom: 10px;
  font-weight:bold
}

header p {
  font-size: 15px;
  opacity: 0.8;
  margin-bottom:10px;
}

nav {
  margin-top: 20px;
}

nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
}

section {
  padding: 80px 0;
}

h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 28px;
}

.profile,
.skills,
.contact {
  text-align: center;
}

.works-list {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.work-card {
  background-color: white;
  width: 340px;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  transition: 0.3s;
  text-align:left;
}

.work-card h3 {
  font-size: 18px;
  margin: 15px 0 10px;
}

.work-card p {
  font-size: 14px;
  line-height: 1.6;
  transition: 0.3s;
}

.work-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.work-card img {
  width: 100%;
  border-radius: 10px;
}

.skills ul {
  list-style: none;
  padding: 0;
  display:flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  font-weight: bold;
}

.skills li {
  background-color: white;
  margin: 10px auto;
  padding: 15px;
  max-width: 500px;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  width:280px
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 28px;
  background: linear-gradient(45deg, #4facfe, #00f2fe);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  transition: 0.3s;
  font-weight: bold;
  box-shadow:0 4px 12px rgba(0,0,0,0.15);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

footer {
  background-color: #1f1f1f;
  color: white;
  text-align: center;
  padding: 20px;
}

.back-link {
  display: inline-block;
  margin: 20px;
  color: #333;
  text-decoration: none;
  font-weight: bold;
}

.container img {
  width: 100%;
  max-width: 400px;
  border-radius: 10px;
  margin-top: 20px;
}
