ppt-rs 0.2.6

Create, read, and update PowerPoint 2007+ (.pptx) files with rich formatting, bullet styles, themes, and templates.
Documentation
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f0f0f0;
}

.slide {
    background-color: white;
    width: 80%; /* Or fixed aspect ratio like 16/9 */
    max-width: 1000px;
    aspect-ratio: 16/9;
    margin: 20px auto;
    padding: 40px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.title-slide {
    justify-content: center;
    align-items: center;
    text-align: center;
}

h1 {
    font-size: 3em;
    color: #333;
}

h2 {
    font-size: 2em;
    color: #444;
    margin-top: 0;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.content {
    flex-grow: 1;
    font-size: 1.5em;
    color: #555;
}

ul {
    list-style-type: disc;
    padding-left: 40px;
}

li {
    margin-bottom: 15px;
}

.slide-number {
    position: absolute;
    bottom: 20px;
    right: 20px;
    font-size: 0.8em;
    color: #999;
}

pre {
    background-color: #f5f5f5;
    padding: 15px;
    border-radius: 5px;
    overflow-x: auto;
    font-size: 0.8em;
}

.image-container {
    text-align: center;
    margin: 20px 0;
}

.image-container img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
}