@media only screen and (min-width: 1000px) {
	.border{
		width: 1000px;
		padding: 25px 0px;
	}
}

@media only screen and (max-width: 1000px) {
	.border{
		width: 100%;
		padding: 25px 0px;
	}
}

.body{
	margin: 0px;
}

.centerBlock{
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.centerFlex{
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
}

.centerText{
	text-align: center;
}

.displayNone{
	display: none;
}

.mouseHover{
	cursor: pointer;
}

.marginTop{
	margin-top: 50px;
}