@font-face {
    font-family: 'Noto Sans Regular';
    src: url(fonts/NotoSans-Regular.ttf) format("truetype");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Noto Sans Bold';
    src: url(fonts/NotoSans-Bold.ttf) format("truetype");
    /* Pretty Modern Browsers */
}

@font-face {
    font-family: 'Noto Sans ExtraLight';
    src: url(fonts/NotoSans-ExtraLight.ttf) format("truetype");
    /* Pretty Modern Browsers */
}

body, html {
    height: 100%;
}

body {
    overflow:hidden;
    font-family: 'Noto Sans Bold';
    background: #f3d9da;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

#clock {
    padding: 0 0 20px 0;
    width: 90%;
    height: 90%;
    max-width: 700px;
    max-height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.head {
    width: 100%;
    height: 80px !important;
    background: url(images/headline.png);
    background-position: 50% 50%;
    background-size: cover;
    background-repeat: no-repeat;
}

.body {
    display: flex;
    flex-direction: row;
    justify-content: stretch;
}

.body > div {
    flex: 1;
    text-align: center;
}

.body span {
    color: #af010a;
    font-size: 90px;
    padding-top: 15px;
    display: inline-block;
}

.smalltext {
    padding-top: 5px;
    font-size: 30px;
    color: #e3a7aa;
    font-family: 'Noto Sans ExtraLight';
    text-transform: uppercase;
} 