@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
::selection{
  color: #000;
  background: #fff;
}

/**navigation bar**/

nav{
	font-family: Poppins, sans-serif;
  position: fixed;
  background: #1b1b1b;
  width: 100%;
  padding: 10px 0;
  z-index: 12;
}
nav .menu{
  max-width: 1250px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
}
.menu .logo {
  position: relative;
}
.logo-icon {
  position: absolute;
  top: 10px; /* adjust the value as needed */
  left: 5px; /* adjust the value as needed */
  width: 40px; /* adjust the value as needed */
  height: auto;
}
.menu .logo a {
  margin: 70px;
  text-decoration: none;
  color: #fff;
  font-size: 33px;
  font-weight: 600;
}
.menu ul{
  display: inline-flex;
}
.menu ul li{
  list-style: none;
  margin-left: 7px;
}
.menu ul li:first-child{
  margin-left: 0px;
}
.menu ul li a{
  text-decoration: none;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  padding: 8px 15px;
  border-radius: 5px;
  transition: all 0.3s ease;
}
.menu ul li a:hover{
  background: #fff;
  color: black;
}
.img{
  background: url('img3.jpg')no-repeat;
  width: 100%;
  height: 100vh;
  background-size: cover;
  background-position: center;
  position: relative;
}
.img::before{
  content: '';
  position: absolute;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.center{
  position: absolute;
  top: 52%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 0 20px;
  text-align: center;
}
.center .title{
  color: #fff;
  font-size: 55px;
  font-weight: 600;
}
.center .sub_title{
  color: #fff;
  font-size: 52px;
  font-weight: 600;
}
.center .btns{
  margin-top: 20px;
}
.center .btns button{
  height: 55px;
  width: 170px;
  border-radius: 5px;
  border: none;
  margin: 0 10px;
  border: 2px solid white;
  font-size: 20px;
  font-weight: 500;
  padding: 0 10px;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease;
}
.center .btns button:first-child{
  color: #fff;
  background: none;
}
.btns button:first-child:hover{
  background: white;
  color: black;
}
.center .btns button:last-child{
  background: white;
  color: black;
}

#homepage {
	background-color: black;
}

div.head-title{
	width: 94ch;
	text-align: center;
	overflow: hidden; /* Ensures the content is not revealed until the animation */
	border-right: .15em solid orange; /* The typwriter cursor */
	white-space: nowrap; /* Keeps the content on a single line */
	margin: 0 auto; /* Gives that scrolling effect as the typing happens */
	letter-spacing: .15em; /* Adjust as needed */
	animation: 
		typing 3.5s steps(40, end),
		/**blink-caret .75s step-end infinite;**/
		blinking .8s infinite;
}
/* The typing effect */
@keyframes typing {
  from { width: 0 }
  to { width: 86ch}
}

/* The typewriter cursor effect */
@keyframes blinking {
  from, to { border-color: transparent }
  50% { border-color: orange; }
}

h1.title-text{
	color: #F5F2E8;
	font-size: 55px;
}

div.header{
	background-color: black;
}

/*quote*/
div.quote-div {
	float: right;
	font-family: Georgia,Times,Times New Roman,serif; 
	text-align: center;
	font-size: 18px;
	background-color: black;
	padding-left: 340px;
	padding-right: 340px;
	color: #F5F2E8
}
img.quote-img {
	display: block; 
	width: 40%;
	height: auto;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 60px;
}

.table-center {
  margin-left: auto;
  margin-right: auto;
}

/**TABLE**/
table, td {
  border: 1px white;
  background-color: black;
  font-family: 'Poppins', sans-serif;
}

table {
  float: center;
  border-collapse: collapse;
  width: 20%;
}

td {
  height: 10px;
  vertical-align: bottom;
}

h2 {
	color: white;
	font-size: 18px;
	text-align: center;
}

img{
	opacity: 1;
	filter: alpha(opacity=100);
}
img:hover {
	opacity: 0.3;
	filter: alpha(opacity=30);
}