.page-header {
	display: flex;
	flex-direction: row;
	border: 1px dimgrey;
	box-shadow: 0px 0px 6px lightgrey;
	align-items: center;
	z-index: 10;
	background-color: #fafafa;
	gap: 5px;
	width: 100%;
}

.header-logo {
	font-family: hand-bold;
	font-size: 24px;
	padding-left: 30px;
	flex-grow: 6;
	user-select: none;
}

.header-search {
	background-image: url(./img/search.svg);
	background-size: auto;
	background-repeat: no-repeat;
	height: 20px;
	width: 20px;
	min-width: 20px;
	flex-grow: 1;
	cursor: pointer;
}

.header-signout-button {
	font-family: hand;
	font-size: 20px;
	background-color: rgb(253,94,83);
	border-radius: 10px;
	color: whitesmoke;
	text-align: center;
	padding: 10px;
	margin-right: 10px;
	flex-grow: 1;
	cursor: pointer;
	min-width: 80px;
}