body {
	margin: 0;
	padding: 0;
	font-family: 'Open Sans', sans-serif;

	display: flex;
	flex-direction: column;
}

main {
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: flex-start;
}

.slider_one {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	width: 40%;
}

#slider {
	width: 300px;
	height: 300px;
	border: 3px dotted rgba(169, 169, 169, 0.57);
	overflow: hidden;
}

#polosa {
	position: relative;
	width: 1200px;
	left: 0;
	transition: all ease 1s;

}

#polosa::after {
	content: "";
	display: block;
	clear: both;
}

#polosa img {
	float: left;
	width: 300px;
	height: 300px;
}



.slider_two {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	width: 60%;
}

#slider_alt {
	width: 600px;
	height: 300px;
	border: 3px dotted rgba(169, 169, 169, 0.57);
	overflow: hidden;
}

#polosa_alt {
	position: relative;
	width: 2400px;
	left: 0;
	transition: all ease 1s;

}

#polosa_alt::after {
	content: "";
	display: block;
	clear: both;
}

#polosa_alt img {
	float: left;
	width: 300px;
	height: 300px;
}

.controls {
	margin-top: 20px;
	width: 20%;
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	justify-content: space-around;
}




.back {
	align-self: flex-start;
	margin: 1em 5em;
	text-transform: uppercase;
	color: #C09F5E;
	font-weight: 600;
	text-decoration: none;
}

.back:hover {
	color: #AA7757;
}

