@font-face {
  font-family: Cuprum;
  font-style: normal;
  font-weight: 400;
  src: url(Cuprum-Regular.ttf) format('truetype');
}

@font-face {
  font-family: Cuprum;
  font-style: normal;
  font-weight: 700;
  src: url(Cuprum-Bold.ttf) format('truetype');
}

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

html {
  font-size: 16px;
}

html,
body {
  height: 100%;
  width: 100%;
  background-color: black;
  min-height: 500px;
  overflow: hidden;
}

.wrapper {
  height: 100%;
  width: 100%;
  position: absolute;
  z-index: 0;
  overflow: hidden;
  opacity: 1;
}


.wrapper .image-frame {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 100%;
  width: 100%;
}

.wrapper .image-frame {
  -webkit-transition-delay: 0.5s;
          transition-delay: 0.5s;
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  -webkit-transition-duration: 15s;
          transition-duration: 15s;
  -webkit-transition-property: transform;
          transition-property: transform;
}

.wrapper .image-frame {
  -webkit-transform-origin: bottom left;
          transform-origin: bottom left;
}

.wrapper:nth-child(2n+1) .image-frame {
  -webkit-transform-origin: top right;
          transform-origin: top right;
}

.wrapper:nth-child(3n+1) .image-frame {
  -webkit-transform-origin: top left;
          transform-origin: top left;
}

.wrapper:nth-child(4n+1) .image-frame {
  -webkit-transform-origin: bottom right;
          transform-origin: bottom right;
}

.wrapper.active .image-frame {
  -webkit-transform: scale3d(1.2, 1.2, 0);
          transform: scale3d(1.2, 1.2, 0);
}

@media (orientation: portrait) {
  .wrapper .image-frame {
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }

  .wrapper:nth-child(2n+1) .image-frame {
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}

.column {
  position: absolute;
  height: 100%;
  width: 330px;
  left: 0;
  z-index: 1001;
}

.news-container {
  position: absolute;
  height: 30rem;
  width: 330px;
  left: 0;
  height: auto;
  top: 7rem;
  bottom: 0;
  padding: 1.5em 1em;
  color: white;
  font-size: 2.2em;
  font-family: Cuprum, sans-serif;
  background-color: rgba(84, 84, 84, 0.9);
}

.news-container span {
  color: #ffd200;
  margin-bottom: 0.5em;
  display: block;
  font-weight: 700;
  font-size: 1.2em;
}

.news-container p {
  line-height: 1.1em;
}

.logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 7rem;
  width: 100%;
  background-image: url('logo-uol.png');
  background-position: 24px center;
  background-repeat: no-repeat;
  background-size: 176px 61px;
  background-color: rgba(49, 49, 49, 0.9);
}

.time-date {
  font-size: 16px;
  height: 94px;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  color: white;
  padding: 0.5em 2em;
  font-family: Cuprum, sans-serif;
  background: -moz-linear-gradient(top,  #2e2e2e 0%, #646464 50%, #4f4f4f 51%, #2e2e2e 100%); /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#2e2e2e), color-stop(50%,#646464), color-stop(51%,#4f4f4f), color-stop(100%,#2e2e2e)); /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top,  #2e2e2e 0%,#646464 50%,#4f4f4f 51%,#2e2e2e 100%); /* Chrome10+,Safari5.1+ */
  background: linear-gradient(to bottom,  #2e2e2e 0%,#646464 50%,#4f4f4f 51%,#2e2e2e 100%); /* W3C */
}

.time {
  font-size: 3.5em;
}

.date {
  font-size: 0.8em;
  text-transform: uppercase;
  line-height: 0.3em;
}