/* ##################################################################### */
/* #                            DESKTOP                                # */
/* ##################################################################### */

.content {
	grid-area: box3;
	background-color: white;
	margin-top: 40px;
	width: 80%;
	padding: 50px;
	height: fit-content;
	justify-self: center;
}


/* ##################################################################### */
/* #                              MOBILE                               # */
/* ##################################################################### */
@media only screen and (max-width: 824px) {
	.content {
		grid-area: box3;
		padding: 20px 0px;
		width: 95%;
	}
}
