@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

* {
	box-sizing: border-box;
	font-family: "Montserrat";
	margin: 0;
	padding: 0;
}

.home {
	background-color: #fbf8ef;
	/* background-color: #261f09; */
	height: 100vh;
	display: flex;
	align-items: center;
}

.home > .container {
	display: flex;
	justify-content: space-around;
	width: 100%;
}

.home > .container > .column {
	width: 50%;
	padding: 50px;
	position: relative;
}

.home > .container > .column > .content {
	position: relative;
	text-align: center;
	width: 100%;
}

.home > .container > .column > .content > h2 {
	color: #47788e;
	font-weight: 800;
	font-size: 45px;
}

.home > .container > .column > .content > h1 {
	font-size: 120px;
	color: #f96e2a;
}

.home > .container > .column > .content > p {
	color: #47788e;
	font-size: 25px;
	margin-bottom: 50px;
	margin-top: 40px;
}

.button {
	background-color: #fa6400;
	border: 1px solid transparent;
	border-radius: 0.25rem;
	box-sizing: border-box;
	color: #fff;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	margin-left: 15px;
	margin-right: 15px;
	padding: calc(0.875rem - 1px) calc(1.5rem - 1px);
}

.button:hover {
	background-color: #fb8332;
}

.button:active {
	background-color: #c85000;
}

.cool-link {
	color: #f96e2a;
	font-weight: 600;
}

.link {
	color: #47788e;
	font-weight: 700;
}

.experience {
	background-color: #fbf8ef;
	/* background-color: #261f09; */
}

.experience-content {
	max-width: 1100px;
	margin: auto;
	display: flex;
	justify-content: space-between;
	flex-direction: column;
}

.experience h2 {
	color: #f96e2a;
	font-size: 90px;
	text-align: center;
	margin-bottom: 100px;
}

.column {
	width: 100%;
}

.row {
	display: flex;
}

.card {
	display: flex;
	flex-direction: column;
	justify-content: center;
	margin-bottom: 150px;
	height: 200px;
	width: 100%;
}

.year {
	text-align: center;
	font-size: 80px;
	color: #47788e;
	font-weight: 800;
}

.double-year {
	text-align: center;
	font-size: 75px;
	color: #47788e;
	font-weight: 800;
}

.job-title {
	color: #f96e2a;
	margin-top: 5px;
	margin-bottom: 15px;
	font-size: 50px;
	text-align: center;
}

.job-description {
	font-size: 20px;
	text-align: center;
	color: #47788e;
}

.responsive-year-top {
	display: none;
}

footer {
	background-color: #64442c;
	color: #ffffff;
	text-align: center;
}

.links > a {
	color: #ffffff;
	display: inline-block;
	width: 50px;
	height: 50px;
	line-height: 50px;
	margin-top: 20px;
	margin-bottom: 20px;
	font-size: 25px;
}

/* Tablets */
@media screen and (max-width: 1280px) {
	.home > .container > .column > .content > h1 {
		font-size: 90px;
	}

	.home > .container > .column > .content > h2 {
		font-size: 23px;
	}

	.home > .container > .column > .content > p {
		font-size: 20px;
	}

	.button {
		margin-bottom: 15px;
	}

	.job-description,
	.job-title {
		padding: 10px;
	}

	.row {
		margin-bottom: 100px;
	}
}

/* Smartphones - iPhones */
@media screen and (max-width: 950px) {
	.home > .container > .column {
		padding: 30px;
	}

	.row {
		margin-bottom: 70px;
	}

	.job-description {
		margin-bottom: 30px;
		font-weight: 500;
	}

	.button {
		font-size: 16px;
		padding: 10px 10px;
	}
}

/* Smartphones */
@media screen and (max-width: 480px) {
	.home > .container {
		flex-direction: column;
		padding-bottom: 20px;
	}

	.home > .container > .column {
		padding: 30px;
	}

	.home > .container > .column > .content > h1 {
		font-size: 60px;
	}

	.home > .container > .column > .content > h2 {
		font-size: 23px;
	}

	.home > .container > .column > .content > p {
		font-size: 20px;
	}

	.home > .container > .column {
		width: 100%;
	}

	.experience h2 {
		font-size: 55px;
		margin-bottom: 50px;
	}

	.card {
		height: 100%;
		margin-bottom: 10px;
	}

	.year {
		font-size: 55px;
	}

	.double-year {
		font-size: 55px;
	}

	.job-title {
		font-size: 30px;
	}

	.job-description {
		font-size: 16px;
		padding: 10px;
		margin-bottom: 50px;
	}

	.responsive-year-top {
		display: inherit;
	}

	.responsive-year-bottom {
		display: none;
	}

	.experience-content {
		flex-wrap: wrap;
	}

	.row {
		flex-direction: column;
	}
}
