body {
    font-family: 'Merriweather', serif;
    background-color: #fcf9ed; /* Lighter background color */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: flex-start; /* Align items to the top */
    min-height: 100vh;
    color: #333;
}

.container {
    width: 90%;
    max-width: 800px; /* Limit the max width for readability */
    margin: 20px;
    padding: 20px;
    box-sizing: border-box;
}

header {
    text-align: center;
    margin-bottom: 20px;
}

header h1 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 3em;
}

.author, .date {
    margin: 5px 0;
    font-size: 0.9em;
    font-family: 'Georgia', serif;
}

main {
    font-family: 'Georgia', serif;
}

.blog-post {
    line-height: 1.6;
}

.blog-content {
    margin: 20px 0;
    transition: font-size 0.3s, font-weight 0.3s, color 0.3s;
}

.blog-content:hover {
    font-size: 1.02em; /* Subtle enlargement */
    font-weight: 500; /* Subtle bolding */
    color: #555;
}

.equation {
    text-align: center;
}

.button-container {
	text-align: center;
	margin-top: 20px;
}

.game-button {
	display: inline-block;
	padding: 10px 20px;
	background-color: #fcf9ed;
	color: #333;
	text-decoration: none;
	font-family: 'Georgia', serif;
	border: 2px solid #333;
	border-radius: 4px;
	transition: background-color 0.3s, color 0.3s;
}

.game-button:hover {
	background-color: #333;
	color: #fcf9ed;
}


@media (max-width: 600px) {
    .container {
        width: 100%;
        padding: 10px;
    }

    header h1 {
        font-size: 2em;
    }

    .author, .date {
        font-size: 0.8em;
    }
}

