*{
  margin: unset;
  padding: unset;
}
body{
  background: #000;
  /*background: url("https://i.loli.net/2020/01/09/LpGPeimc5jT1ONf.png");*/
  background-size: cover !important;
  width: 100vw;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
}

body::before{
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.1);
  z-index: 1;
}

.time {
  text-align: center;
  position: relative;
  z-index: 9;
}
.time h1{
  color: rgba(255, 255, 255, .5);
  margin-bottom: 2em;
  font-size: 3em;
}
.time .digit {
  width: 120px;
  height: 200px;
  margin: 0 5px;
  position: relative;
  display: inline-block
}

.digit .segment {
  border-radius: 5px;
  position: absolute;
  opacity: .1;
  transition: opacity .2s;
  -webkit-transition: opacity .2s;
  -ms-transition: opacity .2s;
  -moz-transition: opacity .2s;
  -o-transition: opacity .2s
}

.digit .segment.on,.separator {
  opacity: 1;
  box-shadow: 0 0 30px rgba(212,231,255,.1);
  transition: opacity 0s;
  -webkit-transition: opacity 0s;
  -ms-transition: opacity 0s;
  -moz-transition: opacity 0s;
  -o-transition: opacity 0s
}

.time .separator {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -90px
}

.digit .segment:nth-child(1) {
  top: 10px;
  left: 20px;
  right: 20px;
  height: 10px
}

.digit .segment:nth-child(2) {
  top: 20px;
  right: 10px;
  width: 10px;
  height: 75px;
  height: calc(50% - 25px)
}

.digit .segment:nth-child(3) {
  bottom: 20px;
  right: 10px;
  width: 10px;
  height: 75px;
  height: calc(50% - 25px)
}

.digit .segment:nth-child(4) {
  bottom: 10px;
  right: 20px;
  height: 10px;
  left: 20px
}

.digit .segment:nth-child(5) {
  bottom: 20px;
  left: 10px;
  width: 10px;
  height: 75px;
  height: calc(50% - 25px)
}

.digit .segment:nth-child(6) {
  top: 20px;
  left: 10px;
  width: 10px;
  height: 75px;
  height: calc(50% - 25px)
}

.digit .segment:nth-child(7) {
  bottom: 95px;
  bottom: calc(50% - 5px);
  right: 20px;
  left: 20px;
  height: 10px
}

.personal_statement{
  position: absolute;
  right: 5%;
  bottom: 10px;
  font-size: .8em;
  color: rgba(255,255,255,.5);
  z-index: 9;
}
.personal_statement >a{
  color: rgba(255,255,255,.5);
}
