html, body {
    height: 100%;
    margin: 0%;
    padding: 0;
    overflow: hidden;
    position: fixed;
}

/* https://stackoverflow.com/questions/13416989/computed-font-size-is-bigger-than-defined-in-css-on-the-asus-nexus-7 */
body, body * {
    max-height: 1000000px;
}

/* avoid zooming on tapping */
html {
    touch-action: manipulation;
    -webkit-text-size-adjust: 100%;
}

/* avoid zooming on tapping */
body {
    touch-action: manipulation;
}

#container {
    width: 100%;
    height: 100vh;
    background-image: linear-gradient(DeepSkyBlue, Grey 60%);
}

html, body, #container, .slides {
    max-width: 100vw;
    width: 100vw;
    overflow-x: hidden;
    box-sizing: border-box;
}

.slides {
    width: 100%;
    height: 100vh;
    display: none;
    font-size: 20px;
    font-family: 'Hanken Grotesk', sans-serif;
    font-weight: 500;
    font-optical-sizing: auto;
    color: HotPink;

}

.visible-slides {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

}

.appear-post-sound {
    visibility: hidden;
}

.appear-post-sound-visible {
    visibility: visible;
}

.anim-wrapper {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

a:link {
    background-color: HotPink;
    color: white;
    padding: 20px 30px;
    text-align: center;
    font-size: 65px;
    text-decoration: none;
    display: inline-block;
    border-radius: 10rem;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    text-shadow: 2px 2px 4px #000000;
    border-style: outset;
}

a:visited {
    background-color: SaddleBrown;
    color: white;
    padding: 30px 40px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    border-style: outset;
}

a:hover, a:active {
    background-color: Chartreuse;
}

th, td {
    padding: 20px;
    /*position: flex;*/
}

.marquee {
    width: 100vw;
    font-size: 50px;
    padding: 20px;
    white-space: nowrap;
    overflow: hidden;
}

.marquee span {
    display: inline-block;
    padding-left: 100%;
    animation: scroll-left 10s linear infinite;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}


#emoji {
    position: absolute;
    font-size: 9rem;
    user-select: none;
    pointer-events: none;
}

#purse {
    background: url("images/purse_1f45b.png");
    background-repeat: no-repeat;
    background-size: 300px 300px;
    padding: 100px 300px;
    background-position: center;


}
#brands {
    background: url("images/brands.png");
    background-size: 200px 400px;
    padding: 600px;
    margin-left:20px;
    margin-top:none;

}
#can {
    background: url("images/can.png");
    background-size: 350px 350px;
    padding-top: 20px;
    background-repeat: no-repeat;
    background-origin: inherit;
    margin:0;
}

.tete {
    font-size: 100px;
    opacity: 0;
    display: inline-block;
    animation: growAndFade 8s ease-out forwards;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
    position: absolute;

}

@keyframes growAndFade {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    95% {
        transform: scale(20);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.turningemoji,
.turningemoji-oppose {
    font-size: 60px;
    display: inline-block;
    position: absolute;
    opacity: 0;
    animation-delay: 1s;
}

.turningemoji {
    animation: spin 9s linear forwards;
}

.turningemoji-oppose {
    animation: spin-opposite 9s linear forwards;
}

@keyframes spin {
    0% {
        opacity: 0;
    }
    5% {
        transform: rotate(360deg);
        opacity: 1;
    }

    100% {
        transform: rotate(-360deg);
        opacity: 0;
    }
}

@keyframes spin-opposite {
    0% {
        opacity: 0;
    }
    5% {
        transform: rotate(-360deg);
        opacity: 1;
    }

    100% {
        transform: rotate(360deg);
        opacity: 0;
    }
}
.vertical-marquee {
      height: 1000px;
      width: 300px;
      padding: 30px;
      font-size:20px;
      overflow: hidden;
      position: relative;
      border: 2px solid #000;
      opacity: 0;
      animation: scroll-vertical 8s linear forwards;
      animation-delay: 21s;
      background-color: #f9f9f9;
    }

    .vertical-marquee-content {
      position: absolute;
      width: 100%;
      animation: scroll-vertical 4s linear forwards;
      opacity: 0;
      animation-delay: 23s;
      animation-fill-mode: forwards;
    }

    @keyframes scroll-vertical {
      0% {
        top: -100%;
        opacity: 1;
      }
      99% {
              top: 100%;
              opacity: 1;
            }
      100% {
        top: 100%;
        opacity: 0;
      }
    }


@media (max-width: 1000px) {
    body {
        width: 88vh;
    }

    .slides {
        font-size: 60px;
    }
}
