
h1 {
 font-family: "Source Serif 4";
 color:red
}

h3 {
    font-family: "Montserrat"; 
	font-weight: 2400;
    font-weight: 200;
    color:green
}

p {
    font-family: "Source Serif 4";
    color: #ccc;

}

.description {
      margin-top: 1rem;
      font-size: 0.95rem;
      color: #ccc;
    }

.section {
	position: relative;
	opacity: 0.5;
	transition: opacity 0.3s ease;
	text-decoration: none;	
}

.section:hover,
.section:focus{
	opacity: 1;
}

.section span {
      position: absolute;
      bottom: 50%;
      left: 50%;
      transform: translateX(-50%);
      padding-top: 4px;
	  padding-left: 8px;
	  padding-right: 8px;
	  background-color: blue;
      border-radius: 4px;
      font-size: 24px;
      white-space: nowrap;
      opacity: 0;
      pointer-events: none;    /* so it doesn’t block hover */
      transition: opacity 0.3s ease;
    }

.section:hover,
.section:focus
span {
	opacity: 1;
}

#hydra-canvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

#loader {
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: black;
      display: flex;
	  flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      z-index: 9999;
      transition: opacity 0.5s ease, visibility 0.5s ease;
    }

#loader.hidden {
      opacity: 0;
      visibility: hidden;
    }

#progress-container {
	width: 30%;
	height: 10px;
	background: greenyellow;
	overflow: hidden;
	margin-top: 20px;
}

/* Progress bar fill */
#progress-bar {
	width: 0%;
	height: 100%;
	background: #3498db;
	transition: width 0.3s ease;
}

.portfolio-link {
	text-decoration: none;
	color: inherit;
}

.portfolio-item {
	position: relative;
	overflow: hidden;
	transition: transform 0.3s ease;
}

.portfolio-item img {
      width: 100%;
      height: auto;
      border-radius: 10px;
      object-fit: cover;
	  align-items: center;
      transition: transform 0.4s ease, opacity 0.4s ease;
    }

.portfolio-link:hover .portfolio-item,
.portfolio-link:focus img{
	opacity: 0.7;
	transition: opacity 0.3s ease;
}

.portfolio-link span {
	position: absolute;
	bottom: 50%;            /* place above the link */
	left: 50%;
	transform: translateX(-50%);
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	background-color: blue;
	border-radius: 4px;
	font-size: 24px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;    /* so it doesn’t block hover */
	transition: opacity 0.3s ease;
}

.portfolio-link-overlay {
	position: absolute;
	bottom: 50%;            /* place above the link */
	left: 50%;
	transform: translateX(-50%);
	padding-top: 4px;
	padding-left: 8px;
	padding-right: 8px;
	background-color: blue;
	border-radius: 4px;
	font-size: 24px;
	white-space: nowrap;
	opacity: 0;
	pointer-events: none;    /* so it doesn’t block hover */
	transition: opacity 0.3s ease;
	opacity: 1;
}

.portfolio-link:hover,
.portfolio-link:focus
span {
	opacity: 1;
}


.navbar-toggler {
	border-color: yellowgreen
}

.quantico-regular {
  font-family: "Quantico", sans-serif;
  font-weight: 400;
  font-style: normal;
}


.electrolize-regular {
  font-family: "Electrolize", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.source-serif-4 {
  font-family: "Source Serif 4", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}


