td{
    width: 400px;
    /*background-color: orangered;*/
    background-color: red;
    color: white;
    margin-top: 0;
    padding: 10px;
    padding-top: 0;
    text-align: center;
}

table{
    border-spacing: 10px;
    width: 100%;
}

#top img{
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/* temporary*/
header img{
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-bottom: 5px;
}

h1{
    margin-bottom: 0;
}

td a{
    color: inherit;
    text-decoration: inherit;
}

a.box{
    display: block;
    margin: 0px;
    width: 100%;
    height: 100%;
}

ul{
    text-align: left;
    margin-left: 25%;
    list-style-type: none;
}

li{
    margin-bottom: 5px;
}

#sponsors{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 200px;
}

section figure{
    margin: 5px;
    border: 1px solid lightgray;
    padding: 5px;
    background-color: white;
}

section figure img{
    padding-left: 5px;
    width: 90%;
    
}

section figcaption {
    color: gray;
    padding-left: 15px;
    text-align: left;
}

/* Bildfader */

#gallery {
  position: relative;
}

#gallery figure {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    margin-top: 0;
    margin-left: 2px;
    margin-right: 2px;
}

#gallery figure:last-of-type {
    position: relative;
}

#gallery figcaption {
    position: absolute;
    left: 1em;
    bottom: 0.5em;
    z-index: 2;
}

#gallery figure:nth-of-type(n+2) {
    animation: fade;
    animation-duration: 2s;
    animation-delay: calc(var(--index) * 10s + 8s);
    animation-fill-mode: forwards;
    animation-timing-function: linear;
}

@keyframes fade {
    from {opacity: 1;}
    to {opacity: 0;}
}