@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;
}
* {
	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;
  box-shadow: 6px 6px 6px #777777;
  border-radius: 7px;
  cursor: pointer;
  z-index: 1;
}

.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-type: none;
  padding: 0;
  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 {
	align-items: center;
	border-bottom: solid 1px dimgray;
	margin: 15px;
}
.form {
	display: flex;
	flex-direction: column;
	width: 90%;
    max-width: 600px;
    margin: 1em auto;
	padding: 2em 0;
	background-color: rgba(3, 81, 90, 0.899);
	color: white;
	border-radius: 15px;
	gap: 10px;

}
.containerProPic {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 2em auto;
	width: 150px;
	height: auto;
	padding: 5px;
	border-radius: 20px;
}
.containerProPic img{
	width: 100%;
	height: auto;
	border-radius: 15px;
	opacity: 0.7;
}

.emailMe {
	display: flex;
	justify-content: center;
}
.emailMe a {
	text-decoration: none;
	color: white;
	font-size: 1rem;
}
p {
	text-align: center;
	position: fixed;
	bottom: 200px;
	right: 55px;
	color: rgb(109, 1, 109);
	font-size: small;
}

#linktop, #next, #back {
	display: flex;
	flex-direction: column;
	align-items: center;
  	z-index: 2;
}

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) {
  .topnav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }
  .form {
    width: 95%;
    padding: 1em;
  }
  .containerProPic {
    width: 100px;
  }

  .emailMe a {
    font-size: 0.9rem;
  }
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}