body {
	 background-color: #303035;
}

.title {
	color: white;
	text-align: center;
}
.container {
	display: grid;
	grid-template-columns: repeat(4,25%);
	grid-gap: 10px;
	justify-items: center;
}
.name {
	text-align: center;
	color: white;
}

.element {
	background-color: #696969;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 128px;
	width: 100%;
	box-sizing: border-box;
	text-decoration: none;
}
.element:hover {
	background-color: #424242;
}

.gap {
	width: 100%;
}

p {
	font-family: verdana;
	font-size: 20px;
}
