body {
	margin: 0;
	width: 100%;
	height: 100%;
	font-family: Karla;
	font-size: 16px;
	color: white;
	background-color: rgb(30, 30, 30);
}


#container {
	display: flex;
	flex-flow: column nowrap;
	gap: 30px;
	padding: 14px;
}

.title {
	margin: 40px;
	text-align: center;
	font-size: 40px;
	font-weight: 700;
	color: rgb(220, 220, 220);
}

article {
	display: flex;
	flex-flow: row wrap;
	justify-content: center;
	gap: 30px;
	padding: 30px 0;
}

article:nth-of-type(2n) {
	background-color: rgb(40, 40, 40);
}

.imgSection {
	flex-basis: 500px;
}

.phone {
	flex-basis: 200px;
}

.txtSection {
	flex-basis: 300px;
	align-self: center;
}

.rtl {
	direction: rtl;
}

img {
	display: block;
	width: 100%;
}

h1 {
	font-size: 24px;
	font-weight: 700;
	color: rgb(200, 200, 200);
}

a {
	color: rgb(110, 177, 255);
	text-decoration: none;
}

a:hover {
	text-decoration: underline;
}
