@import url('https://fonts.googleapis.com/css?family=Special+Elite&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body {
    background: url(../image/pattern-digitalClock.png);
}

.main {
    background-color: #ccc;
    width: 400px;
    height: 175px;
    margin: 100px auto;
    position: relative;
    padding: 30px;
}

.clockBadge {
    background-color: #e66357;
    color: #fff;
    padding: 5px 10px;
    font-family: sans-serif;
    font-weight: bold;
    width: 96px;
    position: absolute;
    top: -15px;
    left: 150px;
}

.clock {
    background-color: #ebebeb;
    text-align: center;
    font-size: 55px;
    height: 100%;
    padding-top: 35px;
    font-family: 'Special Elite', cursive;
    border-radius: 4px;
}