@keyframes farjanAnimate
{
    0%    {bottom:0px;}
    50%   {bottom:-10px;}
    100%  {bottom:0px;} 
}

@keyframes rubbleAnimate
{
    0%    {left:130%;}
    100%  {left:-1000px;}
}

@keyframes animatePapu
{
    0%    {transform:rotate(-50deg);}
    20%   {}
    40%   {}
    60%   {transform:rotate(-30deg);}
    80%   {}
    100%  {transform:rotate(-50deg);}
}

@keyframes rotate
{
    0%    {color:#FFFFFF;transform:rotate(0deg);}
    100%  {color:#FFFFFF;transform:rotate(360deg);}
}

@keyframes animateSlide
{
    0%    {bottom:0%;}
    100%  {bottom:100%;}
}

@keyframes animateComment
{
    0%    {left:100%;}
    100%  {left:-100%;}
}

body {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: #111111;
}

#papu
{
    position: absolute;
    height: 100%;
    left: 10%;
    bottom: -35%;
    animation: animatePapu 3s ease 0s infinite forwards;
}

#rose
{
    position: absolute;
    width: 30%;
    right: 5%;
    top: 25%;
    animation: rotate 10s linear 0s infinite;
}

#centerer{
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-width: 100vw;
}

#container
{
    visibility: hidden;
    position: absolute;
    height: 100vh;
    aspect-ratio: 16 / 9;
    margin:auto;
    overflow: hidden;
    background-image: url("img/bg_base.jpg");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
    background-size: contain;

    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%);
}
@media (max-aspect-ratio: 16/9) {
    #container {
        height: auto;
        width: 100vw;
    }
}
@media (min-aspect-ratio: 16/9) {
    #container {
        height: 100vh;
        width: auto;
    }
}
#container_ {
    position: relative;
    height: 100%;
    width: 100%;
    margin:auto;
    overflow: hidden;
    background-image: url("img/bg_fg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
    background-size: contain;
}

#counter_cont
{
    position: relative;
    width: 35%;
    margin: auto;
    text-align: center;
    top: 35%;
    color: #FF5555;
    background-color: #FFFAFA;
    border-style: outset;
    border-radius: 50px;
    border-width: 10px;
}

#counter_label
{
    position: relative;
    width: 100%;
    margin: auto;
    text-align: center;
    color: #FF5555;
    font-family: "Gaegu", sans-serif;
    font-size: 2.5vw;
    text-shadow: 1px 1px 1px #111111;
}

#counter
{
    position: relative;
    width: 100%;
    margin: auto;
    text-align: center;
    color: #FF5555;
    font-family: "Lilita One";
    font-size: 3vw;
    text-shadow: 3px 3px 2px #111111;
}

#commentshow
{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin:auto;
    text-align: center;
}

#slideshow
{
    position: absolute;
    top: -35%;
    left: 30%;
    width: 25%;
    height: 200%;
    transform: rotate(-35deg);
    overflow: hidden;
    margin:auto;
    text-align: center;
}

.comment
{
    position: absolute;
    left: 100%;
    width:auto;
    color: #FFF;
    font-family: "Permanent Marker";
    animation: animateComment 6s linear 0s 1;
    animation-fill-mode: forwards;
    font-size:3vw;
    text-shadow: 2px 2px 3px #111111;
    text-wrap: nowrap;
}

.slide
{
    position: absolute;
    left:0;
    width: 100%;
    height: auto;
    animation: animateSlide 6s linear 0s 1;
    animation-fill-mode: forwards;
}

#clickme
{
    position: absolute;
    top: 0;
    padding-top:10%;
    width: 100%;
    height: 100%;
    margin:auto;
    color:#FFF;
    font-size:10vh;
    font-family: "Lilita One";
    text-align: center;
}