html body {
	background-color: #2D3142;
	display: flex;
	flex-direction: column;
	margin: 0;
	padding: 0;
	height: 100%;
}

button {
	background-color: #8B8B8B;
	border-style: solid;
	border-color: #373737 #FFFFFF #FFFFFF #373737;
}

.top_bar {
	width: 100%;
	height: 50px;
	background-color: #4F5D75;
	margin: 0;
	border: 0px;
	display: flex;
	align-items: center;
	padding: 0 10px 0 10px;
	box-sizing: border-box;
}

.single_texture {
	display: flex;
	width: 100%;
	height: calc(100% - 50px);
	padding: 8px;
	box-sizing: border-box;
}

.texture_wrapper {
	width: 28%;
	height: 100%;
	background-color: #4F5D75;
	padding: 10px;
	box-sizing: border-box;
}

.texture_container {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	height: 95%;
	justify-content: space-evenly;
	overflow: auto;
}

.texture_container button {
	padding: 2px;
	width: 40px;
	height: 40px;
	cursor: pointer;
}

.search_bar {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 5%;
}

.search_bar input{
	width: 50%;
	height: 50%;
}

.search_bar * {
	margin: 0 5px 0 5px;
	background-color: #BFC0C0;
}

.texture_display {
	margin: 0 20px 0 20px;
	flex-direction: column;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.texture_display img {
	width: 128px;
	height: 128px;
	border: solid 2px black;
	background-color: #BFC0C0;
}

.texture_display h1 {
	color: #FFFFFF;
}

.swap_button {
	margin: 0 20px 0 20px;
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.swap_button div {
	display: inline;
	color: white;
}

.swap_button button {
	cursor: pointer;
	margin: 10px 0 10px 0;
	width: 150px;
	height: 50px;
}

.texture {
	image-rendering: optimizeSpeed;
    image-rendering: -moz-crisp-edges;
    image-rendering: -o-crisp-edges;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: pixelated;
    image-rendering: optimize-contrast;
    -ms-interpolation-mode: nearest-neighbor;
	width: 32px;
	height: 32px;
	object-fit: cover;
	object-position: 0px 0px;
}