@import url('https://fonts.googleapis.com/css2?family=Muli&display=swap');
* {
    box-sizing: border-box;
    border-radius: 6px;
}
body {
    background-image: url('https://image.winudf.com/v2/image1/Y29tLmZsYWd3YWxscGFwZXIuYnJhemlsX3NjcmVlbl8wXzE1NTczNzE4MTdfMDkz/screen-0.jpg?fakeurl=1&type=.jpg');
    background-size: cover;
    background-position: center center;
    font-family: 'Muli', serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin: 0;
    overflow: hidden;
    position: relative;
}
body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(to right, #05823E, #211158, #ffee00);
    opacity: 0.5;
    z-index: -1;
    width: 100%;
    height: 100%;
}
.container {
    display: flex;
    text-align: center;
}
.container span {
    background-image: url('https://image.winudf.com/v2/image1/Y29tLmZsYWd3YWxscGFwZXIuYnJhemlsX3NjcmVlbl8wXzE1NTczNzE4MTdfMDkz/screen-0.jpg?fakeurl=1&type=.jpg');
    background-size: cover;
    width: 430px;
    height: 250px;
    font-weight: 900;
    font-size: 120px;
    color: transparent;
    -webkit-background-clip: text;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}
.container span img {
    width: 70px;
    height: 50px;
    margin-left: 10px;
}
.container .days,
.container .hours,
.container .minutes,
.container .seconds {
    background-color: #fff;
    margin: 0 10px;
    border: 1px solid #516BEB;
    padding: 10px;
    width: 70px;
    height: 60px;
    position: relative;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}
.container .days::before,
.container .hours::before,
.container .minutes::before,
.container .seconds::before {
    content: '';
    position: absolute;
    bottom: 25px;
    left: 0;
    height: 1px;
    width: 100%;
    background-color: #516BEB;
}
.container small {
    display: block;
    margin-top: 6px;
}