main {
	padding-top: 5rem;
	.main_content {
		/* width: 80%; */
		width: 100vw;
		margin: 0 auto;
		padding: 1rem;
		@media (min-width: 768px){
			width: 576px;
			padding: 1rem 4rem;
		}
		@media (min-width: 992px){
			width: 786px;
			padding: 1rem 0;
		}

		picture {
			width: 35%;
			float: left;
			margin: 0 1rem .5rem 0; /* space on the right and bottom */
			@media (min-width: 768px){
				width: 50%;
			}
			img {
				width: 100% !important;      /* Forces the image to fill the 30% picture container */
				height: auto;     /* Maintains aspect ratio */
				display: block;   /* Removes unwanted whitespace at the bottom */
			}
		}



	}
}