@import url('https://fonts.googleapis.com/css?family=Bungee+Shade|Quicksand:500');

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

html {
  height: 100%;
}

body {
  background-image: url("https://c1.staticflickr.com/3/2945/15493129312_c3e8119017_k.jpg");
  height: 100%;
  background-size: cover;
}

.main {
  background: #ddd;
  width: 400px;
  height: 200px;
  margin: 100px auto;
  position: relative;
  padding: 30px;
  border-radius: 5px;
  filter: drop-shadow(2px 2px 3px gray);
}

.title {
  width: 200px;
  background: #f13939;
  color: white;
  text-align: center;
  padding: 5px 10px;
  position: absolute;
  top: -15px;
  left: 25%;
  font-family: 'Quicksand', sans-serif;
  font-weight: bold;
  filter: drop-shadow(1px 2px 3px gray);
}

.clock {
  background: #EBEBEB;
  text-align: center;
  font-family: 'Bungee Shade', sans-serif;
  /* font-weight: 500; */
  font-size: 50px;
  height: 100%;
  padding-top: 25px;
  border-radius: 5px;
}

.footer {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: .3rem;
  background-color: rgba(242, 244, 247, .5);
  text-align: center;
}
