* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #f4f4f4;
  color: #333;
}

/* HEADER */
.header {
  background-color: #1e293b;
  color: white;
  padding: 40px 20px;
  text-align: center;
}

/* SECTIONS */
.section {
  background: white;
  margin: 20px;
  padding: 20px;
  border-radius: 8px;
}

.section h2 {
  margin-bottom: 10px;
  color: #1e293b;
}

/* SKILLS */
.skills {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skills li {
  background: #e2e8f0;
  padding: 8px 12px;
  border-radius: 5px;
}

/* PROJECT */
.project a {
  color: #2563eb;
  text-decoration: none;
}

/* CONTACT FORM */
#contactForm {
  max-width: 400px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#contactForm input,
#contactForm textarea {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #ccc;
  font-size: 14px;
}

#contactForm textarea {
  height: 100px;
  resize: none;
}

#contactForm button {
  background-color: #2563eb;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 5px;
  cursor: pointer;
}

#contactForm button:hover {
  background-color: #1e40af;
}

#formStatus {
  margin-top: 10px;
  font-size: 14px;
}

/* FOOTER */
.footer {
  background-color: #1e293b;
  color: white;
  text-align: center;
  padding: 15px;
  margin-top: 20px;
}

.resume-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background-color: #2563eb;
  color: white;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
}

.resume-btn:hover {
  background-color: #1e40af;
}

