html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}


body{
    background: linear-gradient(181deg, rgb(255 255 255) 25%, rgb(75 75 75) 100%);
}

#mainContainer{
    width: 100%;
    text-align: center;
    padding: 20px 20px;
}

#logo{
    margin-bottom: 10px;
}

#heroSection img{
    animation: shimmy 3s infinite;
    animation-direction: alternate;
    -webkit-filter: drop-shadow(5px 5px 5px #222222);
    filter: drop-shadow(1px 5px 5px #858585d0);
}

@keyframes shimmy {
    0% {
      transform: translate(0, 0);    
    }
    100% {
      transform: translate(20px, 35px);
    }
  }

h1{
    font-family: 'Rubik', sans-serif;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 30px;
}

*{
    box-sizing: border-box;
}

#storeImgDiv{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.storeIcon{
    margin-bottom: 20px;
    animation: shaking 1s 2;
}

@keyframes shaking {
    0% {transform: translateX(-10px);}
    20% {transform: translateX(-5px);}
    50% {transform: translateX(-5px);}
    70% {transform: translateX(-5px);}
    80% {transform: translateX(10px);}
    90% {transform: translateX(-10px);}
 }