@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;
  -moz-box-shadow: 6px 6px 6px #777777;
  -webkit-box-shadow: 6px 6px 6px #777777;
  box-shadow: 6px 6px 6px #777777;
  border-radius: 7px;
}

.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;
}
.container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	align-items: center;
	height: auto;
	padding: 0;
	margin: 0;	
}

.pro-pic img {
	width: 300px;
	height: auto;
	border-radius: 10px;
	object-fit: contain;
}

.pro-pic {
	display: flex;
	height: auto;
	justify-content: space-evenly;
	align-items: center;
	padding: 10px;
	margin: 10px;
	position: relative;
	z-index: 2;
	font-family: monospace;
	-moz-box-shadow: 10px 10px 10px #777777;
	-webkit-box-shadow: 10px 10px 10px #777777;
	box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7), 10px 10px 10px #777777;
	border-radius: 10px;
}

.main-title, .main-education {
	position: relative;
	z-index: 2;
	width: 350px;
	height: 350px;
	padding: 10px;
	margin: 10px;
	border: 1px solid darkgray;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	text-align: center;
	font-family: monospace;
	font-weight: bold;
	color: white;
	-moz-box-shadow: 10px 10px 10px #777777;
	-webkit-box-shadow: 10px 10px 10px #777777;
	box-shadow: 0 0 15px 5px rgba(255, 255, 255, 0.7), 10px 10px 10px #777777;
	border-radius: 10px 10px 10px 10px;
	background-color: rgba(0, 0, 0, 0.7);
}

.main-title::before, .main-education::before {
	content: ' ';
	background-image: url(images/InnaUnsplash.jpg);
	background-size: cover;
	background-repeat: repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0.3;
	z-index: 1;
	pointer-events: none; /* allows clicks to pass through */
}

.main-title,
.main-education,
.pro-pic,
footer,
.topnav,
#linktop,
#next,
#back {
  position: relative;
  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) {
  .pro-pic img {
    width: 90%;
    max-width: 280px;
  }
}

@media (max-width: 768px) {
  .topnav ul li a {
    font-size: 16px;
    padding: 8px 12px;
  }

  .main-title,
  .main-education {
    width: 90%;
    height: auto;
    font-size: 16px;
  }

  .pro-pic img {
    width: 90%;
    max-width: 280px;
  }

  .container {
    flex-direction: column;
    padding: 1rem;
  }
}
#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  pointer-events: none;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 0;
}