* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

body,
html {
    height: 100%;
}

.playfair-display {
    font-family: 'Playfair Display', serif;
}

.title {
    height: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.title > :not(:first-child) {
    margin-top: 1em;
}

h1 {
    font-size: 3em;
}

h2 {
    font-size: 1.5em;
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4em;
    }

    h2 {
        font-size: 2em;
    }
}

h3 {
    font-size: 1.5em;
    margin-bottom: 1em;
}

h4 {
    font-size: 1em;
    margin-bottom: 1em;
}

.blue {
    color: #fff;
    background-color: #00a1e6;
}

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

.box {
    padding: 3em 1em;
}

.box p:not(:first-child), .show-more-text > p:first-child {
    margin-top: 1em;
}

.show-more-checkbox {
    display: none;
}

.show-more-text {
    max-height: 0;
    overflow: hidden;
}

.show-more-checkbox:checked ~ .show-more-text {
    max-height: fit-content;
}

.show-more-label, .show-less-label {
    margin-top: 1em;
    cursor: pointer;
    text-decoration: underline;
}

.slideshow .show-less-label, .slideshow .show-more-label {
    margin-left: 1em;
}

.show-more-checkbox:checked ~ .show-more-label, .show-less-label {
    display: none;
}

.show-more-checkbox:checked ~ .show-less-label, .show-more-label {
    display: inline-block;
}

a {
    color: inherit;
}

ul {
    margin-top: 0.5em;
    margin-left: 14px;
}

p {
    text-align: justify;
}

#konferenzen li:not(:last-child) {
    margin-bottom: 0.5em;
}