.slideshow {
    display: flex;
    font-size: 300%;
    height: 100vh;
    padding: 0;
}

.slideshow h1 {
    font-size: 150%;
    text-align: center;
}

.slideshow h2 {
    font-size: 125%;
    text-align: center;
}

.slide {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    width: 100%;
    height: 100%;
    padding: 1em;
    background-color: var(--pico-background-color);
}

.slide section {
    margin: 1rem;
}

.slide img {
    display: flex;
    margin: auto;
    /* max-width: 65%; */
}

.slide ul ul li {
    list-style: circle;
}

.slide iframe {
    display: flex;
    margin: auto;
}

.slide footer {
    font-size: 50%;
    text-align: center;
}

.slide pre {
    font-size: 50%;
}

.title {
    text-align: center;
}

.title h1 {
    font-size: 200%;
}


.row {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(0, 1fr);
    align-items: center;
}

.white-background {
    background-color: #fff;
}

.center {
    display: flex;
    margin: auto;
}
