.headerImage{
  animation: fade-in-size 2s;
}

@keyframes fade-in-size {
  0% {
    scale: 0.5;
    opacity: 0;
  }
  100%{
    scale: 1;
    opacity: 1;
  }
}

.main{
  padding: 0;
  margin: 0;
}

.videoDisplay{
  width:800px;
  height:auto;
}

.noBackgroundContent{
  padding-right: 3.5%;
  padding-left: 3.5%;
  padding-top: 3%;
  padding-bottom: 3%;
}

/*Small Screens*/
@media (max-width: 575.98px) {
  .contentHolder {
    max-width: 100vw;
    overflow: hidden;
  }
  .videoDisplay{
    width:90vw;
    padding-top: 10px;
  }
  .contentCard{
    overflow-wrap: break-word;
    word-break: break-word;
  }
  .noBackgroundContent{
    padding-right: 0;
    padding-left: 0;
    padding-top: 3%;
    padding-bottom: 3%;
  }
  .bigContentCard .galleryGrid{
    display:none;
  }
}

.contentCard {
  max-width: 90vw;
  min-height: 50vh;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: break-word;
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.6);
}

.contentCard .col img {
  display: block;
  margin-top: auto;
  max-width: 100%;
  object-fit: contain;
}

.bigContentCard {
  width: 90vw;
  height: auto;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  position: relative;
}

#button {
  flex: 1 1 60%;
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.projectDisplay .img-fluid {
  height: auto;
  width: 100%;
  max-height: 40vh;          
  object-fit: contain;       
}

.projectDisplay .cardFooter{
	position: absolute;
	bottom: 5%; 
	right: 5%;
}

/* Container and image styles */
.image-container img {
  max-width: 200px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

#fullscreenView {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

#overlay-img{
  width: 50vw;
  height: auto;
}

#closeButton{
  position: fixed;
  top: 0;
  right: 12px;
  font-size: 6rem;
  color: white;
  cursor: pointer;
  z-index: 9999;
}

.arrowButton{
  font-size: 6rem;
  color: white;
  cursor: pointer;
  display: flex;
}