@import url('https://fonts.googleapis.com/css?family=Raleway:300,400');


* {
    font-family: Raleway, sans-serif;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 0;
    overflow: hidden;
    color: teal;
}

h1 {
    font-weight: normal;
    font-size: 60px;
    margin: 40px 0 40px;
}
.countdown {
    display: flex;
    transform: scale(2);
}

.time {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 15px;
}

.time h2 {
    font-weight: bold;
    font-size: 36px;
    line-height: 1;
    margin: 0 0 5;
}

.back {
  display: inline;
  padding: 0 2%;
  margin: 20px;
  border-radius: 5em;
  font-size: 30px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -ms-transform: translateX(-60%);
  transform: translateX(-65%);
}

.back:hover {
    background-color: rgba(0, 0, 0, 0.2);
}

.back a{
    display: inline-block;
    padding: .5em;
    text-decoration: none;
    color: teal;
}
