* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
h1,h2,.sprd-header__title {
    font-family: Pacifico,Brush Script MT,cursive;
}

#buttonSpreadshirt, #buttonServiceMail{
    display: none;
}


#shop{
   opacity: 0;
   animation: fadein 2s forwards;
}

.sprd-startpage-teaser__image.sprd-startpage-teaser__image--has-text{
    animation: zoom 10s alternate infinite;
}


@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

@keyframes zoom {
    from { transform: scale(1); }
    to   { transform: scale(1.2); }
}