#my_head {
  text-align: center;
  height: var(--my-bar-height-l);
  margin: auto;
  padding: 6px;
  max-width: 960px;
}

#logo {
  font-size: x-large;
  font-family: LogoFont, sans-serif;
  height: var(--my-bar-height);
  display: flex;
  align-items: center;
  justify-content: center;
}

#logo a {
	text-decoration: none;
}

#logo a:hover {
	text-decoration: underline;
}

#searchCtrl {
	display: flex;
	align-items: center;
}

#prompt {
	flex-shrink: 1;
	flex-grow: 1;
	box-sizing: border-box;
	font-size: medium;
	border-radius: 8px;
	padding: 8px;
	margin: 0px;
	height: var(--my-bar-height-l);
}

#prompt::placeholder {
	font-size: x-large;
}

#searchIt {
	flex-shrink: 0;
	cursor: pointer;
	background-color: transparent;
	border-right: none;
	border-bottom: none;
	border-top: none;
	border-left: 2px solid rgb(128, 128, 128);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	width: var(--my-bar-height-l);
	height: var(--my-bar-height-l);
}

#searchIt:hover {
	background-color: var(--my-button-hover);
}

#generateIt {
	flex-shrink: 0;
	cursor: pointer;
	background-color: transparent;
	border: none;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0px;
	width: var(--my-bar-height-l);
	height: var(--my-bar-height-l);
}

#generateIt:hover {
	background-color: var(--my-button-hover);
}

#progressBar {
	display: none;
	flex-grow: 1;
	box-sizing: border-box;
	height: var(--my-bar-height-l);
	justify-content: space-between;
	align-items: center;
	margin: 0px 4px;
}

#progressBar>div:last-child {
	margin-left: 6px;
	white-space: pre;
}

#my_foot {
	text-align: center;
}

/* body */
#info {
	font-size: small;
	display: flex;
	flex-wrap: wrap;
	align-items: flex-end;
	justify-content: center;
	min-height: var(--my-bar-height-s);
}

#info>span+span {
	margin-left: 12px;
}

#info>span:last-child {
	display: none;
}

#items {
	display: flex;
	flex-wrap: wrap;
	padding: 4px;
}

#items a {
	padding: 4px 8px;
	margin: 2px;
	letter-spacing: 1px;
	font-size: large;
	color: #FFF;
	border: 1px solid #666;
	border-radius: 4px;
	background-color: transparent;
	text-decoration: none;
	max-width: 120px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	height: var(--my-bar-height-s);
}

#items a:hover {
	border: 1px solid #CCC;
	max-width: none;
}

.pages {
	min-height: var(--my-bar-height);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: large;
	max-width: 600px;
	margin: auto;
	flex-wrap: wrap;
}

.pages a {
	flex-basis: 7.2%;
}

@media (max-width: 575.98px) {
	.grid-title {
		font-size: x-small !important;
		height: var(--my-bar-height-xs) !important;
	}
}