* { box-sizing: border-box; }

body {
  margin: 0;
  padding: 0;
  background-color: #1a1a2e;
  color: #eee;
  font-family: 'Comic Sans MS', 'Chalkboard SE', comic-sans;
}

.header {
  background: linear-gradient(90deg, #e94560, #0f3460, #e94560);
  padding: 20px;
  text-align: center;
  border-bottom: 5px dashed #e94560;
}
.header h1 {
  font-size: 3em;
  margin: 0;
  text-shadow: 3px 3px 0px #000;
}
.header p {
  font-size: 1.2em;
  color: #ffd700;
}

/* nav bar */
.nav {
  background: #16213e;
  padding: 10px;
  text-align: center;
  border-bottom: 3px solid #e94560;
}
.nav a {
  color: #e94560;
  text-decoration: none;
  margin: 0 15px;
  font-size: 1.1em;
}
.nav a:hover {
  color: #ffd700;
  background: #e94560;
  padding: 5px 10px;
  border-radius: 5px;
}

.section {
  max-width: 900px;
  margin: 30px auto;
  padding: 20px;
  background: #16213e;
  border-radius: 10px;
  border: 2px solid #e94560;
}
.section h2 {
  color: #e94560;
  border-bottom: 2px dashed #ffd700;
  padding-bottom: 10px;
}

.about-me {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.about-text { flex: 2; }
.about-img {
  flex: 1;
  text-align: center;
}
.about-img img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 5px solid #e94560;
  object-fit: cover;
}

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 15px;
}
.skill {
  background: #0f3460;
  padding: 8px 15px;
  border-radius: 20px;
  border: 2px solid #e94560;
  font-size: 0.9em;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 20px;
}
.project-card {
  background: #0f3460;
  padding: 15px;
  border-radius: 8px;
  border: 2px solid #ffd700;
  transition: transform 0.3s;
}
.project-card:hover {
  transform: scale(1.05);
  border-color: #e94560;
}
.project-card h3 {
  color: #ffd700;
  margin-top: 0;
}
.project-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 5px;
  margin-bottom: 10px;
}

.project-links { margin-top: 10px; }
.project-links a {
  color: #e94560;
  text-decoration: none;
  margin-right: 10px;
}
.project-links a:hover { text-decoration: underline; }

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
}
.form-group label {
  margin-bottom: 5px;
  color: #ffd700;
}
.form-group input, .form-group textarea {
  padding: 10px;
  border-radius: 5px;
  border: 2px solid #e94560;
  background: #0f3460;
  color: #eee;
  font-family: inherit;
}
.form-group input:focus, .form-group textarea:focus {
  outline: none;
  border-color: #ffd700;
}

.submit-btn {
  background: #e94560;
  color: white;
  border: none;
  padding: 12px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1em;
  font-family: inherit;
  transition: background 0.3s;
}
.submit-btn:hover {
  background: #ffd700;
  color: #1a1a2e;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.social-links a {
  color: #e94560;
  text-decoration: none;
  font-size: 1.2em;
}
.social-links a:hover { color: #ffd700; }

.footer {
  text-align: center;
  padding: 20px;
  background: #16213e;
  color: #777;
  border-top: 3px solid #e94560;
  margin-top: 30px;
}

.meme-box {
  background: #ffd700;
  color: #1a1a2e;
  padding: 15px;
  border-radius: 5px;
  margin: 20px 0;
  font-weight: bold;
  text-align: center;
  border: 3px solid #e94560;
}

.strikethrough {
  text-decoration: line-through;
  color: #777;
}