body {
  font-family: 'Iceland', sans-serif;
  background-color: #000; /* Dark brackground */
  color: #99FFFF; /* Ice Blue Text */
  margin: 0;
  padding: 0;
}

header {
  background: #333;
  color: white;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Iceland', sans-serif;
}

header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s ease; /* Smooth transition for hover effect */
}

header nav a:hover {
  color: #99FFFF; /* Ice blue text color on hover */
}

h1 {
  font-size: 48px; /* Big main heading */
  text-shadow: 0 0 8px #0ff, 0 0 16px #0ff;
}

h2 {
  font-size: 36px;
}

h3 {
  font-size: 24px;
}

p {
  font-size: 20px;
}

li {
  font-size: 20px;
}

#about {
  padding: 20px;
  position: relative;
}

.about-container {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  /* justify-content: space-between; */
  gap: 20px; /* Space between text and image */
}

.text-content {
  max-width: 50%;
  margin: 0;
}

.text-content p {
  margin-bottom: 0;
}
  
section {
  padding: 20px;
  font-family: 'Iceland', sans-serif;
}

.image-content img {
  max-width: 250px;
  height: auto; /* Keep the aspect ratio */
}

@media (max-width: 768px) {
  #about {
    flex-direction: column;
    align-items: center;
  }
  
  .about-container {
    flex-direction: column;
    align-items: center;
  } 

  .text-content {
    max-width: 100%;
  }
}

/* Button Style */
.toggle-btn {
  background-color: #0ff;
  color: #000;
  border: none;
  padding: 10px 15px;
  cursor: pointer;
  font-family: 'Iceland', sans-serif;
  font-size: 16px;
  transition: background-color 0.3s ease;
  margin: 10px 0;
  border-radius: 8px;
}

.toggle-btn:hover {
  background-color: #00aaff;
}

.hidden-content {
  display: none;
  background-color: #111;
  padding: 15px;
  margin-top: 10px;
  border-left: 3px solid #0ff;
  color: #0ff;
  animation: fadeIn 0.5s ease-in-out;
  font-family: 'Iceland', sans-serif;
}

.project-gif {
  width: 100%;
  max-width: 400px;
  margin: 10px 0;
  border-radius: 8px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

footer {
  background: #333;
  color: white;
  text-align: center;
  padding: 10px;
  font-family: 'Iceland', sans-serif;
}
