@import url('https://fonts.googleapis.com/css?family=Poppins:300,400');
body{
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background: #262626;
}

img{
    width: 600px;
}

.center
{
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    text-align: center;

}

#clock
{
    display: flex;
    width: 600px;
    margin: 0 auto;
    text-align:center;
}

#clock div
{
    position: relative;
    width: 120%;
    padding: 20px;
    margin: 0 5px;
    background: #262626;
    color: #ffffff;
    border: 2px solid #000000;
}

#clock div:last-child
{
    background: #e91e63;

}

#clock div:before
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 50%;
    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: 500;
}

#clock div span:nth-child(2)
{
    font-size: 18px;
    font-weight: 500;
    margin-top: -10px;
}

@media screen and (min-width : 320px) and (max-width : 700px) {
    

    img
    {
        width:100%;    
    }
}