@charset "UTF-8";
/* CSS Document */

*, 
*::before,
*::after {
	box-sizing: border-box;
}

body {
	background-color: #A9BA9D;
	margin: 0 auto;
}


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


h1 {
	font-size: 3em;
	margin: 10px 0;
	text-align: center;
	text-transform: uppercase;
	color: #3C280D;
	font-weight: bold;
}

.contact-container {
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.contact {
	border: 3px solid #00563B;
	border-radius: 20px;
	display: flex;
	align-items: center;
	gap: 15px;
	flex: 1 1 300px;
	padding: 1%;
	background-color: #F5EFD6;
}

.contact img {
	width: 100%;
	max-width: 120px;
	height: auto;
	border-radius: 20px;
}

.contact p {
	font-size: 1em;
}

.contact a{
	color: #00563B;

}

@media	(max-width: 768px) {
	.contact p {
		font-size: .5em;
	}

	.contact {
		flex-direction: column;
		text-align: center;
	}
}



