
html
{
    scroll-behavior: smooth;
    height: 100vh;
}
:root
{    
    --primary-red: hsl(237, 18%, 59%);
    --primary-blue: hsl(345, 95%, 68%);
    --neutral-white: hsl(0, 0%, 100%);
    --neutral-dark-blue: hsl(235, 16%, 14%);
    --neutral-dark: hsl(234, 17%, 12%);
}
body
{    
    background-color: var(--neutral-dark);    
    height: 100vh;
}
#body
{
    /*height:75%;*/
    width: 100%;
    /*background-image: url("https://previews.dropbox.com/p/thumb/ABIlVkpRMpfnofYY9aMdOUBP9MW_ho5abzQBfrC0-M6Bkf1tppyNJk3SZMg5i-J3TEx26pudvu1w80zJAUPsv1-1ALfpdK8TgfnlD0TFZPEsslRfAsWrJJ6q3dyFCZPMvlCXidSiZV9w7uu7QQ_3tGPw6j9jwhB8bP7tuT8j_2ouBm44SCJ77cj4oM4CW7KT6QqipbR1O6mJXTMy6y3U0ztAxmU7pE7A2vFH4nCSClp-lDfcFF8vxBwWMeQ25wRwM1HlJD0DQaAaD0uceeseZA1rwSdWhN91yYR0UkYPExGYfjQgJwgsmXYia_RB2E66vkZ2xnoBD83gcVDEjmrx9d--gAcT0Mz5d8mZxilKjlkZTg/p.png?size=1600x1200&size_mode=3");    
    background-position: 0 0;
    background-size: cover;
    background-repeat: no-repeat;*/
    display: flex;
    justify-content: center;
    align-items: center;
    animation: stars-animation 15s infinite alternate;
}
@keyframes stars-animation 
{
    to    
    {
        background-position: 100% 100%;
    }
}
#body-inner
{

}
#title
{
    margin-bottom: 50px;
    text-align: center;
}
#time-counter
{
    display: flex;
    justify-content: center;
}
.counter
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 10px; 
    animation: start-animation 1s forwards;
    opacity: 0;
    transform: scale(0);   
}
@keyframes start-animation 
{
    to    
    {
        transform: scale(1);
        opacity: 1;
    }
}
.counter:nth-child(1)
{
    animation-delay: 0;
}
.counter:nth-child(2)
{
    animation-delay: .2s;
}
.counter:nth-child(3)
{
    animation-delay: .4s;
}
.counter:nth-child(4)
{
    animation-delay: .6s;
}
.number
{
    /*padding: 15px;*/
    padding: 0px 8px;
    font-size: 50px;
    margin-bottom: 10px;    
    border-radius: 3px;
    background-image:
    radial-gradient(circle at 0 50%, #191923 5%, #ffffff00 5%),
    radial-gradient(circle at 100% 50%, #191923 5%, #ffffff00 5%),
    linear-gradient(#807A75 50%, #AAA39C 50%);    
    color:  #fdfffc;    
    position: relative;
    font-weight: 600;
}
.number::after
{
    content: '';
    height: 50%;
    width: 70%;
    position: absolute;
    background: #807A75;
    opacity: 0.5;
    bottom: 50%;
    left: 50%;
    transform: translateX(-50%);
    
}
.desc
{
    font-size: 10px;
    color: #acb1b5;
}
footer
{
    height: 25%;
    width: 100%;
    background-image: url("https://previews.dropbox.com/p/thumb/ABKGk8SADMebSEwgd6P1ZjqGhVDiaw5-l-RwN6Twhq3V2c_iKzKBFEdkXMVaGTqRqBerLsq6TNRyZl5Qf0VnlNLTcLT0AiBcyDMBGs_1Siy6x10H2B3KJlomchN2h6pMDVWTL9zh9qq8vYh3Mih3gBRgxLukSf8GT5gcg2mZyF8LI0V9YWWrKlbN-QTHFhHr_BuPvYtky2kPlr7Ug0S0dySLUaRXPMhwvH2WccgYwuJfBdIkN8sRaMr7ib7DZrtFSQtmXfvwH15YdANohUDeQNTiz03L2vfMJOh7LPl1zPuw1YvP3z1bBPS7hLKzda1h129Xo4dduomSRbREOrLY58NjAednGDpIbIKN3sN83exE-w/p.png?size=1600x1200&size_mode=3");    
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: center;
    background-position: center;
}
footer i
{
    font-size: 20px !important;
    margin: 0 10px;
    cursor: pointer;    
    color: var(--primary-red);
}
footer i:hover
{
    color: var(--primary-blue)
}
@media screen and (max-width: 520px)
{
    .number
    {
        font-size: 50px;
        font-weight: 800;
    } 
    .counter
    {
        margin: 0 5px;
    }   
}
@media screen and (max-width: 350px)
{
    .number
    {
        font-size: 25px;
    }
}