@import url('https://fonts.googleapis.com/css2?family=Mali:wght@500&display=swap');
main {
	margin-left: 50px;
	margin-right: 50px;
}


#intro {
	
	padding: 0px 15px;
	background-color: #FF8080;
	border-radius: 5px;
	width: 91%;
	margin-left: auto;
	margin-right: auto;
	text-align: center;
}
#introText {
	font-size: 15pt;
}

.emphasis {
	font-family: 'Mali';
	font-weight: 500;
	font-size: 18pt
}


#lollyLifeLogo {
	margin: 20px auto 0 auto;
	width: 100%;
}
#ytFeed {
	margin-top: 100px;
}
#videoFeed a, #playlistFeed a {
	width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.ytFeedCard:hover {
	background-color: #DFA62E;
}
.ytFeedCard {
	padding: 8px;
	padding-bottom: 8px;
	width: 90%;
	margin-left: auto;
	margin-right: auto;
	background-color: #FFC64E;
	border-radius: 5px;
	transition: background-color 0.3s ease-in-out;
	margin-bottom: 15px;
	cursor: pointer;
}
.ytFeedThumb {
	height: 100px;
	margin-right: auto;
	margin-left: auto;
	width: 100%;
	height: auto;
}
.ytFeedTitle {
	margin: 0;
	margin-bottom: 5px;
	font-size: 11pt;
	font-weight: 700;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.ytFeedDesc {
	margin: 0;
	font-size: 9pt;
}
.ytFeedHead {
	text-align: center;
	font-size: 15pt;
	background-color: #A4F5EB;
	margin-left: auto;
	margin-right: auto;
	padding: 5px;
	width: 150px;
	border-radius: 5px;
	border: 1px solid black;
}


/*Medium*/
@media only screen and (min-width: 600px) {
	.ytFeedCard {
		height: 8.5em;
	}
	.ytFeedThumb {
		height: 100%;
		width: auto;
		float: left;
		margin-right: 7px;
	}
	.ytFeedTitle {
		
	}
	.ytFeedDesc {
		height: 8.3em;
		overflow: hidden;
	}
	#intro {
		float: right;
	}

}

@media only screen and (min-width:900px) {
	#lollyLifeLogo {
		width: 250px;
		margin-left: 0;
		margin-right: 0;
	}
	#intro {
		float: right;
		width: 60%;
		margin-top: 20px;
	}
}

/*Large*/
@media only screen and (min-width:1300px) {
	#videoFeed {
		flex: 50%;
	}
	#playlistFeed {
		flex: 50%;
	}
	#ytFeed {
		display: flex;
	}
	#intro {
		width: 50%;
	}
	
}