body{
	overflow-x:hidden;
	font-family: sans-serif;
  background: #111;
  color: white;

}

.navbar{
	display:flex;
	justify-content:space-between;
	background-color:#232f3e;
	align-items:center;
	padding: 15px 30px;
	position:fixed;
	width:100%;
	top:0;
	z-index:1000;
}
h1{
	color:#ffbbbbdb;
}
.list{
	list-style:none;
	display:flex;
	gap:20px;
	position:relative;
	right:30px;


	padding:0;
	margin:0;
}

.list li a {
    color: #ede6e6ba;
    font-weight: bold;
    font-size: 14px;
}

.list a{
	display:inline-block;
	transition:.5s ease;
	text-decoration:none;

}
.list a:hover{
	transform:scale(1.1);

}



.searching{

	display:flex;
	max-width:500px;
	transform:translate(-60px,0);

	justify-content:center;

}
.searching input {
    width: 500px;
    height: 40px;
    padding: 0 15px;
    border: none;
    border-radius: 15px;
    outline: none;
    font-size: 16px;
	transition:background-color .5s ease;
}



.searching input::placeholder {
    line-height: normal;
    vertical-align: middle;
}

.searching button {
    background-color: #ff9900;
    border: none;
    border-radius: 15px;
    padding: 0 20px;
    font-weight: bold;
    cursor: pointer;
	transition:background-color .5s ease;
}
.searching button:hover{

	background-color:#a4680d;
}
.Account{
	display:flex;
	gap:30px;
}
.Account button {
	
	transform:translate(-75px,0);
    padding: 8px 15px;
    border-radius: 10px;
    border: none;
    font-weight: bold;
    cursor: pointer;
    font-size: 14px;
	transition: .5s ease;

}
.Account button:hover{
	transform:translate(-75px,0) scale(1.1);

}


.btn-signup {
    background-color: #ff9900;
    color: #232f3e;

}
.btn-signup a{
	text-decoration:none;
	color:black;

}


 .btn-login a {
	text-decoration:none;
	color:white;

 }

 .btn-login {
    background-color:transparent ;
    color: white;
    border: 1px solid white;
	text-decoration:none;

}
.btn-signout{
    color: white;
    border: 1px solid white;


}
.btn-signout a{
	text-decoration:none;
	color:black;
}


.details {
  position: absolute;
  top: 20%;
  left: 10%;
}

.info-table {
  border-collapse: collapse;
  width: 600px;
  height: 300px;
}

.info-table th, .info-table td {
  border: 1px solid white;
  text-align: center;
}

.info-table th {
  background: #333;
}

.back {
  position: absolute;
  top: 105%;
  background: red;
  color: white;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 17px;
}
.back:hover {
  background: #e11a1a;
}

.video {
  position: absolute;
  top: 20%;
  right: 10%;
}

.btn {
 
  border: none;
  border-radius: 8px;
  cursor: pointer;
  background: red;
  color: white;
}

body.light-mode .info-table th {
  border: 2px #111 solid;
  text-align: center;
  background-color: #e1e9df;
}
body.light-mode .info-table td {
  border: 2px #111 solid ;
  background-color: #e1e9df;
  text-align: center;
}


body.light-mode {
  background: white;
  color: #111;
}

body.light-mode .back {
  background: #111;
  color: white;
}

body.light-mode img{
  border: 1px #111 solid;
}
