
h1 {
 font-family: "Quantico";
 color:greenyellow
}

h3 {
    font-family: "Electrolize"; 
    font-weight: 200;
    color:greenyellow
}

p {
    font-family: Times;
    font-size: large;
    color: greenyellow;

}

#hydra-canvas {
	position: fixed;
	top: 0;
	left: 0;
	z-index: -1;
	width: 100%;
	height: 100%;
}

.loader {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: opacity 0.75s, visibility 0.75s;
}

.loader-hidden {
	opacity: 0;
	visibility: hidden;
}

.loader::after {
	content: "";
	width: 75px;
	height: 75px;
	border: 15px solid black;
	border-top-color: blue;
	border-radius: 50%;
	animation: loading 0.75s ease infinite;
}

@keyframes loading {
	from{
		transform: rotate(0turn);
	}

	to{
		transform: rotate(1turn);
	}
}

.content {
  max-width: 800px;
  margin: 40px auto;
  background: rgb(37, 37, 37);
  padding: 30px;
  border-style: groove;
  border-color: blue;
}

.content-title {
    color: greenyellow;
    font-family: "Electrolize";
}

.article {
    margin: 0px;
    width: 100%;
    margin-bottom: 25px;

}

.loading-screen {
	position: fixed;
}

.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;
}

