* {
	outline: none;
}

a {
	color: inherit;
}

body {
	background-color: rgb(30, 30, 30);
	color: white;
	cursor: default;
	font-family: Helvetica, sans-serif;
	font-size: 16px;
	margin: 0;
	-webkit-tap-highlight-color: transparent;
}

.header {
	display: flex;
	-webkit-user-select: none;
	user-select: none;
	border-bottom: 1px solid #2e2e2e;
	gap: 20px;
	padding: 10px 15px;
	justify-content: space-between;
	align-items: center;
}

.header .web-name {
	font-size: 20px;
}

/* .header .web-list {
	display: flex;
	list-style-type: none;
	gap: 20px;
}

.header .web-list li a {
	text-decoration: none;
}

.header .web-list li a:hover {
	text-decoration: none;
	border-bottom: 2px solid #ffffff;
} */

.search-box {
	width: 300px;
	background: rgba(255, 255, 255, 0.1);
	overflow: hidden;
	box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
	justify-content: space-between;
	align-items: center;
}

.search-box input[type="text"] {
	width: calc(100% - 80px);
	border: none;
	/* autocomplete: off; */
	background: transparent;
	color: white;
	padding: 10px 15px;
	font-size: 16px;
	transition: background-color 0.3s;
}

.search-box input[type="text"]:focus {
	background-color: rgba(255, 255, 255, 0.1);
}

.search-box button {
	border: none;
	background-color: #007bff;
	color: white;
	padding: 10px 15px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.search-box button:hover {
	background-color: #0056b3;
}

.suggestions {
	list-style: none;
	padding: 0;
	margin: 0;
	border-bottom: 1px solid #2e2e2e;
	border-top: none;
	max-height: 150px;
	overflow-y: auto;
	position: absolute;
	width: 300px;
	background-color: rgb(30, 30, 30);
	z-index: 1000;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.suggestions li {
	padding: 8px;
	cursor: pointer;
	transition: background-color 0.3s;
}

.suggestions li:hover {
	background-color: #00000021;
}

.box-input {
	display: flex;
	/* margin: 0; */
	flex-direction: row;
	flex-wrap: nowrap;
	align-content: stretch;
	justify-content: flex-end;
}

.doings-dev {
	background-color: #0071e3;
	padding: 10px;
	text-align: center;
}

.web-pag {
	display: flex;
}

.list-box {
	top: var(--navbar-height);
	width: 200px;
	height: 95vh;
	border-right: 1px solid #2e2e2e;
}

.list-box ul {
	list-style: none;
	padding: 0;
	color: #ffffff;
}

.list-box ul li a {
	text-decoration: none;
	color: inherit;
	padding: 10px 20px;
	display: block;
	transition: background-color 0.3s;
}

.list-box ul li a:hover {
	background-color: #00000021;
}

.list-box ul li h3 {
	color: inherit;
	padding: 10px 20px;
	margin: 0;
	display: block;
}

.list-box ul .where-list {
	border-left: 4px solid #0071e3;
}

.main-box {
	margin: 15px auto;
}

.main-box h1,
h2,
h6 {
	font-weight: 400;
}

.text-box {
	width: 800px;
}

@media (max-width: 1110px) {
	/* .list-box {
		display: none;
	} */

	.text-box {
		width: 500px;
	}
}

@media (max-width: 870px) {
	.text-box {
		width: 100%;
	}
}

@media (max-width: 510px) {
	.web-name {
		display: none;
	}

	.search-box {
		width: 100%;
		background: rgba(255, 255, 255, 0.1);
		overflow: hidden;
		box-shadow: 0 0 15px rgba(0, 0, 0, 0.4);
		justify-content: space-between;
		align-items: center;
	}
}