#wrapper {
	width: 60%;
	margin: 0 auto 0 auto;
}

body {
	background-color: #212121;
}

header {
	width: 100%;
	background-color: none;
	color: black;
	height: 100px;
	text-align: center;
}

main {
	width: 100%;
	background-color: none;
	color: black;
}

section {
	width: 50%;
	background-color: none;
	color: white;
	float: right;
	box-sizing: border-box;
	padding: 10px;
	text-align: center;
}

footer {
	width: 100%;
	background-color: none;
	color: white;
	float: left;
	height: 132px;
	text-align: center;
}

.container {
	display: grid;
	align-items: center; 
	grid-template-columns: 1fr 1fr 1fr;
	column-gap: 5px;
   }

img {
	max-width: fit-content;
	max-height: fit-content;
}

.text {
	font-size: 20px;
	padding-left: 20px;
}