/* General Styles */
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #f8f8f8;
  margin: 0;
  padding: 0;
}

h1,
h2,
h3 {
  font-weight: 500;
  margin-top: 0;
}

a {
  color: #337ab7;
  text-decoration: none;
}

a:hover {
  color: #23527c;
  text-decoration: underline;
}

#content {
  width: 70vw;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  background: rgba(0, 255, 255, 0.7);
  overflow: scroll;
}

#container {
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
}

/* Header */
header {
  background-color: #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 100;
}

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
}

nav li {
  margin: 0 1rem;
}

nav a {
  display: block;
  padding: 1rem;
  font-weight: 500;
  text-transform: uppercase;
}

/* Sections */
section {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1rem;
}

section h2 {
  text-align: center;
  margin-bottom: 2rem;
}

/* Skills */
.skill-category {
  margin-bottom: 2rem;
}

.skill-category h3 {
  margin-bottom: 0.5rem;
}

/* Experience */
.experience-item {
  margin-bottom: 2rem;
}

.experience-item h3 {
  margin-bottom: 0.5rem;
}

.experience-item p {
  margin-bottom: 0.5rem;
}

/* Education */
.education-item {
  margin-bottom: 2rem;
}

.education-item h3 {
  margin-bottom: 0.5rem;
}

/* Contact */
.social-links {
  margin-top: 1rem;
}

.social-links a {
  display: inline-block;
  margin-right: 1rem;
  font-size: 1.2rem;
  color: #333;
}

.social-links a:hover {
  color: #337ab7;
  text-decoration: none;
}

/* Footer */
footer {
  background-color: #333;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* Media Queries */
@media (max-width: 768px) {
  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav li {
    margin: 0.5rem 0;
  }

  section {
    margin: 2rem auto;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 1.8rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  h3 {
    font-size: 1.2rem;
  }

  nav a {
    padding: 0.5rem;
  }

  .social-links a {
    margin-right: 0.5rem;
    font-size: 1rem;
  }
}
