/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 11-Jun-2019, 12:55:10
    Author     : milos.markovic
*/

@import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
body{
    margin: 0;
    padding: 0;
    font-family: 'Popins', sans-serif;
    background: #262626;
}

.center{
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;
}

h1{
    text-align: center;
    text-transform: uppercase;
    color: #fff;
    font-size: 3em;    
}

h1 span{
    font-size: 4em;
    line-height: .8em;
}

#clock{
    display: flex;
    width: 450px;
    margin: 0 auto;
}

#clock div{
    position: relative;
    width: 100px;
    padding: 20px;
    margin: 0 5px;
    background: #262626;
    color: #fff;
    border: 2px solid #000;
}

#clock div:last-child{
    background: #e91e63;
}

#clock div:before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: rgba(255,255,255.2)
}

#clock div span {
  display: block;
  text-align: center;
}

#clock div span:nth-child(1){
    font-size: 48px;
    font-weight: 800;
}

#clock div span:nth-child(2){
    font-size: 18px;
    font-weight: 800;
    margin-top: -10px; 
}