html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
div,
p,
ul,
ol,
li,
a,
span {
  margin: 0;
  padding: 0;
}

html,
body {
  height: 100%;
  overflow: hidden;
  background: #fff;
  position: relative;
}

ul,
li {
  list-style: none;
}

a {
  text-decoration: none;
}

input,
a,
:focus {
  outline: 0;
  -moz-resize: none;
  -ms-resize: none;
  -o-resize: none;
  resize: none;
}

.abs {
  position: absolute;
  top: 0px;
  left: 0px;
}

.page {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
}

#app {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 5;
}

.clock-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.clock-container img:nth-child(1) {
  position: relative;
  margin-left: 0;
  margin-top: 0;
  width: 100%;
  /* display: none; */
}

.clock-container img:nth-child(2) {
  position: absolute;
  left: 1px;
  top: 0px;
  width: 100%;
  /* mix-blend-mode: merge; */
  border-bottom: solid 1px #000;
  animation: fade-in 5s linear infinite;
  /* transition: clip-path 3s linear; */
}

@keyframes fade-in {
  from {
    clip-path: inset(0px 0px 100% 0px);
  }
  to {
    clip-path: inset(0px 0px 0px 0px);
  }
}
