/*===========================
    01. Common CSS
===========================*/
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,600,700&display=swap");

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: #eee;
}

header {
  text-align: center;
  padding: 50px 20px;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid #444;
  box-shadow: 0 0 10px #000;
}

h1 {
  margin-top: 20px;
  font-size: 2em;
  color: #fff;
}

section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

h2 {
  border-bottom: 2px solid #444;
  padding-bottom: 10px;
  margin-bottom: 20px;
  color: #00ffcc;
}

.projects,
.skills {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.project,
.skill {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 20px;
  border-radius: 8px;
  flex: 1 1 250px;
  box-shadow: 0 2px 4px #000;
}

.project:hover,
.skill:hover {
  border-color: #00ffcc;
}

footer {
  text-align: center;
  padding: 20px;
  color: #666;
  font-size: 0.9em;
}

