html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  text-align: center;
  font-family: sans-serif;
  font-weight: 100;
}

.background {
  background-image: url("../images/volvo-ex30.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% top;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  z-index: -1;
}

.wrapper {
  position: fixed;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
  transform: translate(-50%, 0);
  width: 100%;
}

h1 {
  color: #b7b7b3;
  text-shadow: #474743 2px 1px 2px;
  font-weight: 100;
  font-size: 5rem;
  margin: 4rem 0px 2rem;
}

#clockdiv {
  font-family: sans-serif;
  color: #fff;
  display: inline-block;
  font-weight: 100;
  text-align: center;
  font-size: 3rem;
}

#clockdiv > div {
  padding: 10px;
  border-radius: 3px;
  background: #474743;
  display: inline-block;
}

#clockdiv div > span {
  padding: 15px;
  border-radius: 3px;
  background: #b7b7b3;
  display: inline-block;
}

.smalltext {
  padding-top: 5px;
  font-size: 1.5rem;
}

