.stories-title {
	margin: 40px;
	text-align: center;
}


.story-container {
	display: grid;
	place-items: center;
	grid-gap: 10px;

	cursor: pointer;
	margin-bottom: 15px;
	padding: 10px;

	border: 1px solid;
	border-color: #983838;

	&:hover {
		border-color: lightblue;
	}

	
	.story-thumbnail {
		width: 200px;
		height: 150px;
	}

	.story-information {
		display: inline-block;
		vertical-align: top;

		.story-title {
			font-weight: bold;
			font-size: 20px;
		}
	}
}
