* {
box-sizing: border-box;
}
body {
	width: 95%;
	margin-left: auto;
	margin-right: auto;
    background-color: #888888;
}
.hero-image {
	margin-top: 100px;
	background-image: url("../images/dolphin.jpg");
	background-color: lightskyblue;
	height: 350px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	position: relative;
	margin-top: 0px;
	}
.hero-text{
	text-align: right;
	position: absolute;
	top: -50%;
	left: 75%;
	transform: translate(-50%, 50%);
	color: white;
}
.hero-text h3, h4 {
	text-align: right;
}
.lists	{
	display: flex;
	flex-direction: row;
	gap: 20px;
}
.title	{
	color: black;
}
.displayBox	{
	/*width: 300%;*/
	padding: 25px;
	margin-left: auto;
	margin-right: auto;
	}
#stShows, #stMovies, #bestMovies, #sharpeBooks {
	background-color: 888888;
	color: white;
	list-style-type: none;
	background-color:darkblue;
	font-size: 125%;
	display: none;
}
button   {
	width: 50px;
	height: 50px;
	background-color: red;
	border-radius: 50%;
}
.lineBreak	{
	margin-bottom: 10px;
}