@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Playfair+Display:wght@700&display=swap');

body {
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.slide {
    display: none;
    height: 100%;
}

.slide.active {
    display: block;
}

.infographic {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.slide-indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #e5e7eb;
    cursor: pointer;
}

.slide-indicator.active {
    background-color: #3b82f6;
}