body {
  margin: 0;
  padding: 0;
}

#home {
  width: 100%;
  height: 100vh;
  color: white;
  display: flex;
  flex-direction: colum;
  justify-content: center;
  align-items: center;
}

#heading-endexp {
  font-size: 5vw;
  margin-bottom: 10vh;
}

#time {
  display: flex;
  color: grey;
  font-size: 5vh;
  width: 85vw;
  justify-content: space-around;
}

#clock {
  display: flex;
  color: rgba(254,184,198,1);
  font-size: 12vw;
  font-family: "Courier-new", Courier , monospace;
  height: 20vh;
  line-height: 21vh;
  overflow: hidden;
  position: relative;
}

.move {
  animation: move ease-in-out ls infinite;
}

.timer {
  display: inline-block;
  padding: 10px;
}

@keyframes move {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-25vh);
  }
}

