* {
  margin:  0;
  padding:  0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  line-height: 1.6;
  background-color: #555;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: auto;
}

a {
  color: #fff;
  text-decoration: none;
}

a:hover {
  text-decoration: none; 
  cursor: pointer;  
}

.accent-purple {
  color: #CC7DFF;
}

.accent-yellow {
  color: #FFC161;
}

.accent-green {
  color: #61FFC1;
}

.container {
  max-width: 1000px;
  width: 100%;
  text-align: center;
  padding-top: 6rem;
}

.header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #333;
  color: #fff;
  padding: 1rem;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.header-left,
.header-right {
  flex: 1;
  text-align: center;
}

.header-left a {
  color: #fff;
}

.header-left h1 {
  font-size: 2rem;
  margin: 0;
}

.header-right .menu {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.header-right .menu li a {
  text-decoration: none;
  font-weight: bold;
}

.header-right .menu li a:hover {
  text-decoration: underline;
}

/* Projects Section Styling */
.introduction {
  padding: 1rem;
}

.introduction h3 {
  font-weight: normal;
}

.project {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background-color: #444;
  border-radius: 8px;
  margin: 1rem auto;
  padding: 1rem;
  max-width: 800px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
  text-decoration: none;
  text-align: center;
  color: inherit;
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.project:hover {
  transform: translateY(-5px);
  background-color: #333;
}

.project-image {
  width: 150px;
  height: auto;
  border-radius: 8px;
  flex-shrink: 0;
}

.project-content {
  flex-grow: 1;
}

.project h3 {
  margin: 0 0 0.5rem;
  font-size: 1.5rem;
}

.project p {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: #eee;
}

/* Footer Styling */
.footer {
  background-color: #555;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

.footer p {
  margin-bottom: 0.5rem;
}

.footer .social-links {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.footer .social-links a {
  text-decoration: none;
  font-weight: bold;
}

.footer .social-links a:hover {
  transform: translateY(-5px);
}

.footer .social-links i {
  font-size: 3rem;
}