body {
    margin: 0;
    padding:0;
}

.header {
    background-color: #0c2e7a;
    text-align: center;
    color: white;
    width:100%;
}

.space {
    padding: 0.5%;
}

.scroll  {
    position: sticky;
    top: 0;
    z-index: 999;
}

.carousel {
    background-color: #0c2e7a;
    padding: 3%;
}

.card-body {
    text-align: center;
    height:100%;
}

.top-margin {
    margin-top: 5%;
}

.gallery {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery img {
  width: 300px;
  cursor: pointer;
  border-radius: 8px;
  transition: transform 0.2s;
}

.gallery img:hover {
  transform: scale(1.05);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.8);
  justify-content: center;
  align-items: center;
}

.lightbox.active {
  display: flex;
}

.lightbox-img {
  max-width: 80%;
  max-height: 80%;
  border-radius: 10px;
}

.close {
  position: absolute;
  top: 20px;
  right: 40px;
  font-size: 40px;
  color: white;
  cursor: pointer;
}

.container {
  max-width: 1000px;
  margin: 0 auto;  
  padding: 20px;
}

.link {
  color: white;
  text-decoration: none;
}

.link:hover,
.link:focus,
.link:active {
  color: white;
  text-decoration: none;
}