/* You CSS goes in here */
/* Main content container */
.content {
    max-width: 900px;        /* Controls text width */
    margin: 0 auto;          /* Center the content */
    padding: 20px;
}

/* Paragraph styling */
.content p {
    text-align: justify;     /* Makes both sides aligned */
    line-height: 1.8;        /* Improves readability */
    font-size: 16px;
    color: #333;
}

/* Optional: For better spacing */
.content h1, 
.content h2 {
    text-align: center;
    margin-bottom: 20px;
}