.no-results {
	text-align: center;
	color: #f4511e;
	font-size: 40px;
	font-family: 'Amatic SC', cursive;
}

div.contain {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	margin: auto;
	background: white;
	border-radius: 10px;
	margin-bottom: 30px;
	margin-top: 30px;
}

div.js-info {
	padding-left: 20px;
	padding-right: 20px;
	padding-bottom: 20px;
}

.contain:hover {
	box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.container {
	padding: 2px 16px;
}

.js-name {
	background-color: #8c52ff;
}

#no-suggestions {
	font-family: 'Amatic SC', cursive;
	color: #f4511e;
	font-size: 50px;
}

.js-warn {
	font-family: 'Amatic SC', cursive;
	color: #f4511e;
	font-size: 30px;
	font-weight: bold;
}

div.contain h2 {
	color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-top: 0px;
	font-family: 'Amatic SC', cursive;
	font-size: 35px;
}

form {
	background-image: url("images/podcast-background.png");
	height: 370px;
	max-width: 100%;
	margin: auto;
	border-radius: 15px;
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
}

fieldset {
	padding-top: 100px;
	padding-left: 40px;
	border: none;
}

.js-search-term {
	max-width: 500px;
	margin: auto;
	padding: 0px;
	font-family: 'Josefin Sans', sans-serif;
}

a {
	font-family: 'Josefin Sans', sans-serif;
}

.js-results {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: auto;
}

div.container fieldset {
	margin: auto;
	margin-left: 30px;
}

body {
	background-color: #eff1f7;
}

input.js-search-term {
	border-radius: 4px;
	height: 30px;
}

button {
	height: 34px;
	border-radius: 4px;
	color: white;
	background-color: #59c6b7;
	border-style: none;
	cursor: pointer;
	font-family: 'Josefin Sans', sans-serif;
	font-size: 15px;
}

img.thumbnail {
	width: 100%;
	margin: auto;
	height: auto;
}

.learn-more-button {
	height: 34px;
	border-radius: 4px;
	color: white;
	background-color: #59c6b7;
	border-style: none;
	cursor: pointer;
	font-family: 'Josefin Sans', sans-serif;
	padding: 15px 32px;
	text-decoration: none;
	font-size: 15px;
}

.find-similar {
	padding: 15px 32px;
	height: 45px;
	margin-top: 20px;
}

p.readmore-contain {
	/*font-size: 30px;*/
	font-family: 'Josefin Sans', sans-serif;
	font-size: 20px;
}

p#blurb {
	color: white;
	font-size: 20px;
	margin-top: 0px;
	margin-bottom: 15px;
}

#heading {
	color: #f4511e;
}

h1#heading {
	font-family: 'Amatic SC', cursive;
	font-size: 50px;
	margin-top: 0px;
	font-weight: bolder;
	color: #59c6b7;
	margin-bottom: 0px;
}

body p#blurb {
	font-family: 'Josefin Sans', sans-serif;
	color: white;
	font-size: 20px;
	margin-top: 0px;
	margin-bottom: 10px;
}

span.readmore-contain {
	font-family: 'Josefin Sans', sans-serif;
}

div.similar {
	box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	transition: 0.3s;
	margin: auto;
	background: white;
	border-radius: 10px;
	margin-bottom: 30px;
	margin-top: 30px;
}

div.similar h2 {
	color: white;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-left: 20px;
	border-top-left-radius: 10px;
	border-top-right-radius: 10px;
	margin-top: 0px;
	font-family: 'Amatic SC', cursive;
}


/* The Modal (background) */

.modal {
	display: none;
	/* Hidden by default */
	position: fixed;
	/* Stay in place */
	z-index: 1;
	/* Sit on top */
	padding-top: 100px;
	/* Location of the box */
	left: 0;
	top: 0;
	width: 100%;
	/* Full width */
	height: 100%;
	/* Full height */
	overflow: auto;
	/* Enable scroll if needed */
	background-color: rgb(0, 0, 0);
	/* Fallback color */
	background-color: rgba(0, 0, 0, 0.4);
	/* Black w/ opacity */
}


/* Modal Content */

.modal-content {
	background-color: #fefefe;
	margin: auto;
	padding: 20px;
	border: 1px solid #888;
	margin-bottom: 100px;
}


/* The Close Button */

.close {
	color: #aaaaaa;
	float: right;
	font-size: 28px;
	font-weight: bold;
}

.close:hover,
.close:focus {
	color: #000;
	text-decoration: none;
	cursor: pointer;
}

#mybtn {
	margin-top: 20px;
}

@media only screen and (min-width: 769px) {
	.js-results {
		display: flex;
		flex-direction: row;
		flex-wrap: wrap;
		justify-content: space-around;
		margin-left: 0px;
		width: 100%;
	}
	div.contain {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
		transition: 0.3s;
		width: 33%;
		margin: auto;
		background: white;
		border-radius: 10px;
		margin-bottom: 30px;
		margin-top: 30px;
	}
	div.search {
		display: inline;
	}
	.js-search-term {
		width: 500px;
		margin: auto;
		padding: 0px;
		font-family: 'Josefin Sans', sans-serif;
	}
	fieldset {
		padding-top: 120px;
		padding-left: 100px;
		border: none;
	}
	form {
		background-image: url("images/podcast-background.png");
		height: 370px;
		width: 960px;
		margin: auto;
		border-radius: 15px;
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
	}
	div.similar {
		box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2);
		transition: 0.3s;
		width: 500px;
		margin: auto;
		background: white;
		border-radius: 10px;
		margin-bottom: 30px;
		margin-top: 30px;
	}
	.modal-content {
		background-color: #fefefe;
		margin: auto;
		padding: 20px;
		border: 1px solid #888;
		width: 80%;
		margin-bottom: 100px;
	}
	.find-similar {
		margin-top: 0px;
	}
	.learn-more-button {
		height: 34px;
		border-radius: 4px;
		color: white;
		background-color: #59c6b7;
		border-style: none;
		cursor: pointer;
		font-family: 'Josefin Sans', sans-serif;
		padding: 15px 32px;
		text-decoration: none;
		font-size: 15px;
	}
}
