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

body {
	margin: 0;
	font-family: 'Manrope', sans-serif;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	padding: 0.5rem 0.8rem;
	border-radius: 3px;
	background-color: turquoise;
	text-decoration: none;
	color: #333;
	font-weight: 600;
}

a:not(:last-child) {
	margin-right: 12px;
}

h1 {
	margin-bottom: 30px;
}

.img__container,
.btns__container {
	flex: 1 1 50%;
}

.btns__container {
	margin: auto;
	text-align: center;
}

section {
	display: flex;
	flex-wrap: wrap;
}

.section--reverse {
	flex-direction: row-reverse;
}

@media screen and (max-width: 768px) {
	.img__container,
	.btns__container {
		flex: 0 0 100%;
	}

	.img__container {
		margin-top: 40px;
	}
}
