body,
html {
  height: 100%;
  overflow: hidden; }

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  background-color: #003399; }
  body #gutelaune {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    max-width: 500px;
    margin: 0 auto;
    background-image: url("../img/gutelaune.svg");
    background-size: 80% auto;
    background-position: 50% 48.5%;
    width: 100%;
    overflow: hidden;
    background-repeat: no-repeat; }
  body #clock {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    color: #fdeb19; }
    body #clock h1 {
      font-size: 1.1em;
      font-weight: lighter; }

@-webkit-keyframes rotation {
  from {
    -webkit-transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg); } }

@keyframes rotation {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg); }
  to {
    -webkit-transform: rotate(359deg);
            transform: rotate(359deg); } }

body #gutelaune a {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  font-weight: bold;
  font-size: 2em;
  color: white;
  top: calc(50% - 10px);
  text-align: center;
}