body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Open Sans', sans-serif;
  color: white;
}

/* Background & Main Layout */
.background {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: url('your-art-image.jpg') no-repeat center center/cover;
  z-index: -2;
}

.black-layer1 {
  width: 100%;
  height: 100vh;
}

.black-shape1 {
  width: 100%;
  height: 100%;
  background: black;
  clip-path: polygon(0 0, 70% 0, 0% 60%, 0% 60%);
}

.black-layer2 {
  position: relative;
  background: black;
  padding-bottom: 50px;
}

.black-content {
  position: relative;
  z-index: 2;
  padding: 250px 10% 50px 10%;
  color: white;
}

/* Hero Text */
.text-left h1 {
  font-size: 4.1rem;
  font-family: 'Verdana', cursive;
  color: #fc93e4;
  padding-top: 100px;
  padding-left: 20px;
}

.text-left p {
  font-size: 2.1rem;
  font-family: 'Comic Sans MS', cursive;
  color: #ffb3ff;
   padding-top: 10px;
  padding-left: 80px;
}

/* Navigation Buttons */
.buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: nowrap;
  overflow-x: auto;
  padding: 10px;
  justify-content: flex-start;
}

.buttons a {
  text-decoration: none;
  color: white;
  border: 2px solid #cc66ff;
  padding: 12px 24px;
  border-radius: 50px;
  transition: all 0.3s ease;
  font-size: 1rem;
  font-weight: 500;
  white-space: nowrap;
  flex-shrink: 0;
}

/* General Sections */
.profile-section {
  max-width: 900px;
  margin: 40px auto;
  padding: 20px;
  border-top: 1px solid #333;
}

.profile-section h2, .personal-info h2 {
  font-family: 'Comic Sans MS', cursive;
  font-size: 2.5rem;
  margin-bottom: 30px;
  color: #ffb3ff;
}

/* Personal Information Section */
.personal-info {
  background: #1f1f1f;
  padding: 50px 10%;
  color: white;
  text-align: center;
}

.info-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  background: #2e2e2e;
  padding: 30px;
  border-radius: 20px;
  box-shadow: 0 0 20px rgba(204, 102, 255, 0.3);
}

.info-item {
  background: #3a3a3a;
  padding: 15px 20px;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(255, 179, 255, 0.2);
  text-align: left;
  font-size: 1rem;
}

/* Skills Section */
.skills-grid {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background-color: #1a1a1a;
  padding: 20px;
  border-radius: 10px;
  flex: 1;
  min-width: 200px;
  box-shadow: 0 0 15px #cc66ff33;
}

.card h3 {
  margin-top: 0;
  color: #ffccff;
}

/* Hobbies Section */
.hobby-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 15px;
  padding-left: 0;
  list-style: none;
  font-size: 1.2rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .black-shape1 {
    clip-path: polygon(0 0, 60% 0, 85% 60%, 0% 100%);
  }

  .black-content {
    padding-top: 180px;
  }
}
