html {
  background-color: rgb(255, 255, 255);
}

.logo-image {
  width: 100%;
}

#h1Cap {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
}

#CIS,
#pdf,
#workedOn,
#intern,
#quiz,
#end {
  text-align: center;
}

#workedOn,
#intern,
#quiz {
  font-size: 24px;
}

#CIS p {
  margin-left: 40px;
  margin-right: 40px;
}

#end {
  font-weight: bold;
}

#gone {
  visibility: hidden;
}

footer {
  background-color: rgb(240, 240, 240);
  text-align: center;
  margin-top: 70px;
}

/* Reusable project layout */
.project-flex {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 40px auto;
  flex-wrap: wrap;
  width: 90%;
}

.project-flex img {
  width: 40%;
  border: 2px solid black;
  border-radius: 15px;
}

.project-text {
  width: 50%;
  background-color: rgb(240, 240, 240);
  border: 2px solid black;
  border-radius: 5px;
  padding: 20px;
  box-sizing: border-box;
  text-align: center;
}

/* Responsive layout for mobile */
@media (max-width: 768px) {
  .project-flex {
    flex-direction: column;
    align-items: center;
  }

  .project-flex img,
  .project-text {
    width: 90%;
  }
}

/*.btn-link {
	width: 100%;
	display: inline-block;
	padding: 10px 20px;
	background-color: #333333;
	color: white;
	text-decoration: none;
	border-radius: 5px;
	font-weight: bold;
	transition: background-color 0.3s ease;
	text-align: center;
}

.btn-link:hover {
	background-color: #555555;
}*/