

body {
	background: #d9ba654f;
    color: #3f4040;
	font-family: "Oswald", sans-serif;
}

h1 {
 font-size: 43px;
 font-weight: 500;
 padding-bottom: 15px;
}
.content {
    padding-bottom: 50px;
	width: 100%;
	margin: 0 auto;
    margin-top: 50px;

}

.image-wrapper img {
	max-width: 100%;
    height: auto;
}

  .text-center {
    text-align: center;
  }

  .flex-container {
	display: flex;
	flex-direction: row;
	gap: 20px;
	justify-content: center;
}

.box {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    border: 1px solid #d9ba65;
    padding: 30px;
    width: 300px;
}

.box a {
	color: #3f4040;
	text-decoration: none;
	text-align: center;
}


.icon {
	width: 40px;
    height: 30px;
	text-align: center;
}

.contact-info,
.social-media {
	display: flex;
	align-items: center;
    justify-content: space-between;
    flex-direction: column;
}

.icon img {
	max-width: 100%;
	max-height: 100%;
}

@media only screen and (max-width: 600px) {
	.flex-container {
		display: flex;
		flex-direction: column;
		gap: 20px;
		justify-content: center;
		align-items: center;
	}
  }

