/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f4f4 url('background.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #333;
}

/* Layout */
.portfolio-container {
  display: flex;
  height: 100vh;
  width: 100%;
}

/* Sidebar */
.sidebar {
  width: 280px;
  background-color: white;
  padding: 30px 20px;
  box-shadow: 2px 0 10px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.profile-pic {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 20px;
}

.sidebar h1 {
  font-size: 24px;
  margin-bottom: 10px;
}

.italic-sub {
  font-style: italic;
  color: #0077cc;
  margin-bottom: 20px;
  text-align: center;
}

.btn-download {
  margin: 15px 0;
  text-decoration: none;
  background-color: #0077cc;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  display: inline-block;
}

.social-links a {
  display: block;
  margin: 5px 0;
  color: #0077cc;
  text-decoration: none;
}

.social-links a:hover {
  text-decoration: underline;
}

/* Main Content */
.main-content {
  flex: 1;
  padding: 40px;
  overflow-y: auto;
  background-color: rgba(255, 255, 255, 0.9);
}

.main-content section {
  margin-bottom: 30px;
}

.main-content h2 {
  font-size: 22px;
  color: #0077cc;
  margin-bottom: 10px;
  font-style: italic;
}

.main-content ul {
  list-style-type: disc;
  padding-left: 20px;
  line-height: 1.6;
}

/* Responsive */
@media (max-width: 768px) {
  .portfolio-container {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    justify-content: space-around;
  }

  .main-content {
    padding: 20px;
  }
}
