*{
    margin: 0;
    padding: 0;
}

body{
    background: url('../Assets/Images/Cool_cat.jpg') center no-repeat;
    background-attachment: fixed;
    background-blend-mode: hard-light;
}

.container{
    position: absolute;
    top: 80px;
    left: 100px;
    right: 100px;
    bottom: 80px;
    background: url('../Assets/Images/Cool_cat.jpg') center no-repeat;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    box-shadow: 0 50px 50px rgba(0, 0, 0, 0.5),
                0 0 0 100px rgba(0, 0, 0, 0.1);
}

.container h2{
    text-align: center;
    font-size: 10em;
    line-height: 0.7;
    color: #fff;
    margin-top: -90px;
}

.container h2 span{
    display: block;
    font-weight: 300;
    letter-spacing: 6px;
    font-size: 0.2em;
}

.countdown{
    display: flex;
    margin-top: 50px;
}

.countdown div{
    position: relative;
    width: 100px;
    height: 100px;
    line-height: 100px;
    text-align: center;
    background: #333;
    color: #fff;
    margin: 0 15px;
    font-size: 3em;
    font-weight: 500;
}

.countdown div:before{
    content: '';
    position: absolute;
    bottom: -30px;
    left: 0;
    width: 100%;
    height: 35px;
    background-image: linear-gradient(to right, #ff1493, #fa31a2, #f443b0, #ed53bd, #e560c9, #dc64d0, #d268d6, #c86cdc, #b96ae1, #a769e6, #9368ea, #7b68ee);
    color: #333;
    font-size: 0.35em;
    line-height: 35px;
    font-weight: 300;
}

.countdown #day:before{
    content: 'Days';
}

.countdown #hour:before{
    content: 'Hours';
}

.countdown #minute:before{
    content: 'Minutes';
}

.countdown #second:before{
    content: 'Seconds';
}