/* Reset default styles */
body {
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  background-color: white;
}

/* Header Styles */
header {
  text-align: center;
  background-color: black;
  color: white;
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 2;
}

/* Text Links in Header */
.header-links {
  display: flex;
  justify-content: center;
}

.header-links a {
  color: white;
  text-decoration: none;
  margin: 0 20px;
}

/* Container Styles */
.container {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
  z-index: 1;
}

/* Image Styles */
.image-container {
  text-align: center;
  margin: 20px 0;
  position: relative;
}

.image-link img {
  max-width: 100%; /* Make images responsive */
  height: auto;
  transition: transform 0.2s;
}

.image-link:hover img {
  transform: scale(1.1);
}

.image-caption {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: black;
  color: white;
  padding: 10px;
  border-radius: 5px;
  text-align: center;
}

.image-link:hover .image-caption {
  display: block;
}
/* Collapsible Text Container Styles */
.collapsible {
  margin-bottom: 20px; /* Add the desired margin to separate collapsible groups */
  cursor: pointer;
  padding: 10px;
  background-color: #f1f1f1;
  text-align: center;
}


.content {
  display: none;
  padding: 0 20px;
}

.active {
  display: block;
}

/* Footer Styles */
.fixed-bottom {
  position: fixed;
  bottom: 0;
  background-color: black;
  color: white;
  padding: 10px;
  width: 100%;
  text-align: center;
  z-index: 3;
}

/* Define link styles */
.fixed-bottom a {
  color: white;
  text-decoration: underline;
  margin: 0 10px;
}
 /* Projects Header Styles */
 .projects-header {
  text-align: center;
  font-size: 24px;
  margin-top: 20px;
}
.caption-link {
  text-align: center;
  text-decoration: none;
  color: white;
  font-weight: bold;
}

.caption-link:hover {
  text-decoration: underline;
}

/* Video Container Styles */
 .video-container {
  text-align: center;
}

  /* Responsive Video Styles */
  .video-container iframe {
    max-width: 100%;
}
/* Webcomic */
