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

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

@keyframes animateText
{
    0%    {color:#FFFFFF;transform:rotate(10deg);}
    20%   {color:#FF3333;}
    40%   {color:#33FF33;}
    60%   {color:#3333FF;transform:rotate(-10deg);}
    80%   {color:#FF33FF;}
    100%  {color:#FFFFFF;transform:rotate(10deg);}
}

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

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

#teksti
{
    position: absolute;
    vertical-align: middle;
    width:100%;
    animation: animateText 3s ease 0s infinite forwards;
}

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

#container
{
    visibility: hidden;
    position: relative;
    height: 100%;
    width: auto;
    aspect-ratio: 1 / 1.41;
    margin:auto;
    overflow: hidden;
    background-image: url("img/bg.png");
    background-repeat: no-repeat;
    background-position: center;
    background-position-y: bottom;
    background-size: contain;
}

#counter
{
    position: relative;
    width: 50%;
    margin: auto;
    text-align: center;
    top: 35%;
    color: #FFFFFF;
    font-family: "Rouge Script";
    font-size: 5vh;
    text-shadow: 3px 3px 2px #111111;
}

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