@charset "utf-8";
html, body {
	background-color: #32323229;
	overflow-x: hidden;
}
html, body, h1, h2, h3, h4, p{
	font-family: monospace,  Helvetica, sans-serif;
	color: white;
	text-align: center;
	font-weight: bolder;
	font-style: italic;
}
p {
	margin-bottom: 1em;
}
* {
	padding: 0px;
	margin: 0px;
	box-sizing: border-box;
}
body {
	width: 100%;
	margin: 0 auto;
}
.logo {
  position: fixed;
  top: 5px;
  right: 5px;
  cursor: pointer;
  z-index: 1001; /* above other elements */
}

.logo img {
  height: 40px; /* adjust size as needed */
  width: auto;
  -moz-box-shadow: 10px 10px 10px #777777;
  -webkit-box-shadow: 10px 10px 10px #777777;
  box-shadow: 6px 6px 6px #777777;
  border-radius: 10px;
}

.topnav {
	display: flex;
    justify-content: center;
    width: 100%;
	padding: 1em 2vw;
	position: relative;
	z-index: 2;
}
.topnav ul {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  justify-content: center;
}
.topnav ul li {
	display: inline-flex;
    padding: 10px;
}
.topnav ul li a {
  cursor: pointer;
  display: inline-block;
  padding: 10px 15px;
  background-color: whitesmoke;
  color: black;
  font-weight: bold;
  font-family: monospace;
  font-size: 20px;
  border-radius: 3px;
  text-align: center;
  text-decoration: none;
  transition: background-color 0.3s ease;
  white-space: nowrap;
}
.topnav ul li a:hover {
	background-color: #32323229;
	color: white;
}
.topnav ul li a:active {
	opacity: 0.5;	
}
h1 {
	border-bottom: solid 1px dimgray;
	margin: 15px;
	text-align: center;
}

.container2 {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	width: 100%;
	padding: 1rem;
}
.container, .extraContainer {
	display: flex;
	flex-direction: column; /* stack children vertically */
	align-items: center;
	width: 100%;
	padding: 1rem;

}
.intro0, .intro1, .intro2 {
	flex: 1 1 400px;
	max-width: 700px;
	min-height: unset;
	height: auto;
	padding: 1rem;
	margin: 1rem;
	border: 1px solid darkgray;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: flex-start;
	text-align: left;
	font-family: monospace;
	font-weight: bold;
	color: white;
	box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7), 10px 10px 10px #777777;
	border-radius: 10px;
	background-color: rgba(24, 49, 58, 0.917);
}
.intro0, .intro1, .intro2 {
  align-items: center;
  text-align: center;
}
.intro0 p,
.intro1 p,
.intro2 p {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem); /* Adjust min and max as needed */
  line-height: 1.5;
  margin-bottom: 0.5em;
}
.intro3 {
	flex: 1 1 400px;
	max-width: 700px;
	min-height: unset;
	height: auto;
	padding: 1rem;
	margin: 1rem;
	border: 1px solid darkgray;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: left;
	font-family: monospace;
	font-weight: bold;
	color: white;
	box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7), 10px 10px 10px #777777;
	border-radius: 10px;
	background-color: rgba(24, 49, 58, 0.917);
}
.intro4, .intro5, .intro6, .intro7 {
	flex: 1 1 300px;
	max-width: 500px;
	height: 350px;
	margin: 0.5rem;
	padding: 1rem;
	position: relative;
	z-index: 1;
	color: white;
}

.intro4::before,
.intro5::before,
.intro6::before,
.intro7::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0; bottom: 0;
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 20px;
	z-index: -1;
	opacity: 0.7;
}

.intro4::before { background-image: url(images/sscp.png); }
.intro5::before { background-image: url(images/cissp.png); }
.intro6::before { background-image: url(images/oscp.png); }
.intro7::before { background-image: url(images/Unsplash2.jpg); }

.intro4 h3, .intro5 h3, .intro6 h3, .intro7 h3,
.intro4 p, .intro5 p, .intro6 p, .intro7 p,
.intro4 a, .intro5 a, .intro6 a, .intro7 a {
	color: white;
}

footer {
	background-color: rgba(13, 13, 14, 0.486);
	padding: 1em;
    max-height: 100px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
footer img {
	max-height: 100%;
	max-width: 300px;
}
footer a {
	margin-right: 1em;
	color: white;
}
.video-space {
  height: 55vh;
}
@media (max-width: 768px) {
	.intro0, .intro1, .intro2, .intro3, .intro4, .intro5, .intro6, .intro7 {
		max-width: 95%;
		padding: 1rem;
	}
}
@media (max-width: 768px) {
  .topnav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}