@import url("master.css");

header {
	background: linear-gradient(to bottom, rgba(19, 19, 19, 0) 0%, #131313 100%), url("/static/image/careers.png");
	background-size: cover;
	background-position: center;
	text-align: center;
	padding: 200px 0;
}
header h1 {
	font-size: 48px;
}
header p {
	font-size: 24px;
	font-weight: 300;
}
section#search {
	width: 900px;
	margin: 100px auto 0;
	
}
section#search h1 {
	font-size: 40px;
	font-weight: 500;
}
section#search div {
	width: 100%;
	background: #262626;
	display: flex;
	padding: 15px 20px;
	margin-top: 10px;
	border-radius: 15px;
}
section#search div input {
	flex: 1;
	background: none;
	border: none;
	color: white;
	outline: none;
	font-size: 20px;

}
section#search div button {
	
	background: none;
	border: none;
	font-size: 27px;
}
section#jobs {
	width: 900px;
	margin: 50px auto;
}
section#jobs a {
	text-decoration: none;
	width: 100%;
	display: flex;
	padding: 20px 0;
}
section#jobs a + a {
	border-top: 1px solid rgba(255, 255, 255, 0.13);
}
section#jobs a div {
	flex: 1;	
	font-size: 24px;
}
section a i {
	font-size: 27px;
}

section#jobs #no-jobs {
	text-align: center;
	font-size: 1.2em;
	color: #666;
	padding: 40px;
	line-height: 1.6;
}
@media (max-width: 1000px) {
	
	section#search, section#jobs {
		width: 90%;
	}
	
}
@media (max-width: 700px) {
	header h1 {
		font-size: 35px;
	}
	header p {
		font-size: 25px;
	}
	section#search h1 {
		font-size: 30px;
	}
	section#jobs a div {
		font-size: 18px;
	}
}