@keyframes example {
    from {opacity: 0%;}
    to {opacity: 100%;}
  }

@keyframes impressumButton {
    from {background-color: transparent;}
    to {background-color: rgb(240, 240, 240);}
}

@media only screen and (min-width: 2000px) {
body {
    width: 50%;
    padding-left: 25%;
}
}

body {
    background-color: white;
    animation-name: example;
    animation-duration: 1500ms;
    text-align: center; 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}
button:hover {
    background-color: black;
    cursor: pointer;
}
.links {
    max-width: 100%;
    display: inline-block;
}
.links:hover {
    border-style: solid;
    border-color: #FFD1B3;
    border-radius: 4rem;
    border-width: 0.5rem;
    animation-name: hover;
    animation-duration: 1000ms;
    animation-timing-function: ease-in-out;
}
.iconContainer {
    overflow-x: auto;
    white-space: nowrap;
    flex: none;
    padding: 2rem; 
    margin: 2rem; 
    border: 1rem; 
    border-width: 0rem;
    border-style: solid;
    max-width: 100%;
    height: 15rem;
}
.iconContainer img {
    width: 200px;
}

.impressumButton {
    font-weight: 100;
    background-color: transparent; 
    border: none;
    font-size: larger;
} 
.impressumButton:hover {
    animation-name: impressumButton;
    animation-duration: 500ms;
    background-color: rgb(240, 240, 240);
}
.fusszeile {

    padding: 1rem;
    
}