body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f9;
    margin: 0;
    padding: 0;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100vh;
    overflow: hidden;
}

.container {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    height: 90vh;
    overflow-y: scroll;
    text-align: center;
}

.grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
	margin-top: 20px;
}


.story-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.story-item {
    display: block;
    background: #a44dff;
    color: white;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
    transition: 0.3s;
}

.story-item:hover {
    background: #8920d4;
}


h1 {
	text-align: center;
	font-size: 2.5em;
	color: #333;
	margin-bottom: 20px;
}

h2 {
	text-align: center;
	font-size: 1.5em;
	color: #333;
	margin-bottom: 20px;
}

p {
	line-height: 1.6;
	font-size: 1.1em;
	color: #333;
	text-align: justify;
	margin-bottom: 20px;
}

.story-summary {
	line-height: 1.6;
	font-size: 1.1em;
	color: #333;
	text-align: center;
	margin-bottom: 15px;

}

.story-tile {
	background: white;
	padding: 15px;
	border-radius: 8px;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.story-tile:hover {
	transform: translateY(-5px);
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.story-title {
	font-size: 1.4em;
	color: #444;
	font-weight: bold;
	margin-bottom: 10px;
}

.highlight {
	font-weight: bold;
	color: #a44dff;
}

.quote {
	font-style: italic;
	color: #777;
	text-align: center;
}

.footer {
	text-align: center;
	font-size: 0.9em;
	color: #555;
	margin-top: 30px;
}

.read-more {
	text-decoration: none;
	color: #a44dff;
	font-weight: bold;
}

.read-more:hover {
	text-decoration: underline;
}