@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;
  cursor: pointer;
}

.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 {
	width: 90%;
	max-width: 1000px;
  	margin: 20px auto;
  	padding: 1rem;
  	border-bottom: 1px dotted white;
	background-color: rgb(10, 26, 40);
	background-image: url(images/InnaUnsplash.jpg);
	background-size: cover;
    background-position: center;
  	-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;
  	text-align: center;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-evenly;
	opacity: 0.8;
	cursor: pointer;
  	z-index: 1;
	

}
#gitPro{
    width: 150px;
    height: 100px;
    margin: 10px;
    padding: 10px;
    border-style: outset;
    border-radius: 40px;
    justify-content: space-evenly;
    background-image: url(images/icon-github.png);
    background-size: cover;
    background-position: center; 
    text-align: right;
	font-size: large; 


}

#gitPro a {
	text-decoration: none;
	color: darkgrey;
	
}


#linkedInPro {
    width: 150px;
    height: 100px;
   	margin: 10px;
    padding: 10px;
    border-style: outset;
    border-radius: 40px;
	justify-content: space-evenly;
	position: relative;
	z-index: 1;
	text-align: right;
	font-size: large;
	overflow: hidden;

  
}

#linkedInPro::before {
	content: ' ';
	background-image: url(images/icon-linkedin.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: -1;
}
#linkedInPro a {
	text-decoration: none;
	color:white;	
}

#tryHackMe {
    width: 150px;
    height: 100px;
   	margin: 10px;
    padding: 10px;
    border-style: outset;
    border-radius: 40px;
	justify-content: space-evenly;
	position: relative;
	z-index: 1;
	text-align: right;
	font-size: large;
	overflow: hidden;
}
#tryHackMe::before {
	content: ' ';
	background-image: url(images/tryHackMeLogo.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: -1;
}
#tryHackMe a {
	text-decoration: none;
	color: white;	
}
#hackTheBox {
    width: 150px;
    height: 100px;
   	margin: 10px;
    padding: 10px;
    border-style: outset;
    border-radius: 40px;
	justify-content: space-evenly;
	position: relative;
	z-index: 1;
	text-align: right;
	font-size: large;
	overflow: hidden;
}
#hackTheBox::before {
	content: ' ';
	background-image: url(images/htbLogo.png);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: -1;
}
#hackTheBox a {
	text-decoration: none;
	color: white;
}



.uOut {
    width: 90%;
	max-width: 300px;
    height: 200px;
   	margin: 20px auto;
    padding: 10px;
    border-style: outset;
    border-radius: 60px;
	justify-content: space-evenly;
	position: relative;
	z-index: 1;
	text-align: center;
	font-size: medium;
	overflow: hidden;
}
.uOut::before {
	content: ' ';
	background-image: url(images/Unsplash2.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 1;
	z-index: -1;
}

#user_input {
	font-size: 18px;
	font-weight: bold;
	color: blue;
}

#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;
  }
  .container {
    flex-direction: column;
    align-items: center;
	width: 65%;
    padding: 0.5rem;
  }

}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}