:root {
	--primary-blue: #4f7df3;

	--secondary-pale-blue: #c2d3ff;
	--secondary-light-red: #ff5263;

	--neutral-gray: #969696;
	--neutral-gray: #9696969f;

	--neutral-very-dark-blue: #151f29;

	--bg-body: white;

	--font-family: "Libre Franklin", sans-serif;
}

/* General */

html {
	font-size: 100%;
	box-sizing: border-box;
}

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

body {
	font-family: var(--font-family);
	color: var(--neutral-gray);
	text-align: center;
	background: var(--bg-body);
}

img {
	max-width: 100%;
}

a,
a:visited {
	color: var(--primary-blue);
}

/* Reusable */

.row {
	display: flex;
	flex-direction: column;
}

.container {
	width: 90%;
	max-width: 700px;
	margin: 0 auto;
}

.container-body {
	display: flex;
	width: 100%;
	flex-direction: column;
	max-width: 1440px;
	min-height: 100vh;
}

/* Header */

.header {
	padding: 4em 0 1em;
}
.header__logo {
	width: 4rem;
}

/* Section */

.section__title {
	margin: 0;
	font-weight: 300;
	font-size: 1.8rem;
	letter-spacing: 1px;
	color: var(--neutral-gray);
}
.section__title-bold {
	color: black;
	font-weight: 600;
}

.section__para {
	margin: 1em 0 0;
	font-size: 0.8rem;
	color: black;
}

.section__img {
	margin: 2em 0;
}

/* Section Form */
.section__form {
	margin: 1.5em 0;
}

.section__input {
	padding: 0.8em 2.5em;
	border: 1px var(--secondary-pale-blue) solid;
	border-radius: 2rem;
	margin-bottom: 1em;
}

.section__input::placeholder {
	color: var(--neutral-very-dark-blue);
}

.section__submit {
	font-weight: 600;
	padding: 1em 2.8em;
	border: none;
	border-radius: 2rem;
	background: var(--primary-blue);
	color: white;
	box-shadow: 0px 5px 6px 3px var(--secondary-pale-blue);
	outline: none;
	cursor: pointer;
}

/* Footer */
.footer {
	margin-top: auto;
	padding: 1em 0;
}

.footer__links {
	display: flex;
	justify-content: center;
}

.footer__link {
	width: 1.875rem;
	height: 1.875rem;
	border: 1px var(--secondary-pale-blue) solid;
	border-radius: 50%;
	display: grid;
	place-items: center;
}

.footer__link + .footer__link {
	margin-left: 1em;
}

.footer__copy {
	font-size: 0.6875rem;
	margin-top: 2em;
	font-weight: 100;
}

@media (min-width: 700px) {
	.row {
		flex-direction: row;
		justify-content: space-between;
	}

	.section__input {
		margin: 0;
		width: 69%;
	}

	.section__img {
		width: 80%;
	}
}

@media (min-width: 1300px) {
	.section__img {
		width: 100%;
	}

	.section__title {
		font-size: 2.3rem;
	}
}
