/*
* Novogodišnje odbrojavanje
* by TG Studio
*/

/* CSS Reset*/
html { margin:0;padding:0;border:0; }
body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, dialog, figure, footer, header, hgroup, nav, section {margin:0;padding:0;border:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit;vertical-align:baseline; list-style: none; }


/* Body setup*/
body {
    font-family: "Open Sans", sans-serif;
    font-size: 18px;
    font-weight: 400;
    text-align: left;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    background:#000;
}

a {
    text-decoration: none;
    color: #006bb5;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.animate {
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -ms-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
}

b,
strong { font-weight: 900; }

i,
em { font-style: italic; }

:focus { outline: none; }

img {
    display: block;
    max-width: 100%;
    height: auto;
    zoom: 0.5;
}

img.normal {
    zoom: 1;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    -o-box-sizing: border-box;
    box-sizing: border-box;
}

.main-container {
    overflow-x: hidden;
    width: 100vw;
    height: 100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-wrap: wrap;
    padding: 15%;
}

canvas {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
}
.flip-clock-label {
    font-family: 'Raleway', sans-serif;
    color: #ffffff !important;
    text-transform: uppercase;
}
.countdown {
    position: relative;
    z-index: 5;
}

#background_cycler {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

#background_cycler .img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

#background_cycler .img.active { 
    z-index: 3; 
}

.hide {
    display: none;
}
#cestitka, .poruka {
    font-family: 'Raleway', sans-serif;
    color: #FFF;
    text-transform: uppercase;
    font-size: 100px;
    position: relative;
    z-index: 5;
    font-weight: 900;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
}
#logo {
    position: absolute;
    width: 8%;
    left: 46%;
    top: 5%;
    z-index: 5;
}
.poruka {
  font-size: 92px;
  width: 100%;
  margin-left: 15%;
  margin-right: 15%;
}
.subtitle {
    font-size: 36px;
    font-weight: 400;
}

@media only screen and (orientation: portrait) {
    #logo {
        width: 20%;
        left: 40%;
    }
    #cestitka {
        font-size: 48px;
    }
}