*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: normal;
  box-sizing: border-box;
}

@media (prefers-reduced-motion: reduce) { 
  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}

html {
  font-size: 16px;
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html:focus-within {
    scroll-behavior: auto;
  }
}

body {
  position: relative;
  min-height: 100svh;
  font-family: Pretendard, BlinkMacSystemFont, -apple-system, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  word-break: keep-all;
  text-rendering: optimizeSpeed;
  cursor: default;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

iframe {
  display: block;
  border: 0;
}

ul[class],
ol[class] {
  list-style: none;
}

code,
pre,
kbd,
samp {
  -moz-osx-font-smoothing: auto;
  -webkit-font-smoothing: auto;
  font-family: monospace;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

td,
th {
  padding: 0;
}

td:not([align]),
th:not([align]) {
  text-align: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
  cursor: pointer;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

textarea {
  resize: none;
}

textarea:not([rows]) {
  min-height: 10rem;
}

:target {
  scroll-margin-top: 10rem;
}

[hidden] {
  display: none !important;
}

#asdf {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: white;
}

#asdf div {
  position: absolute;
  top: 50%;
  left: 50%;
  transform-origin: 50% 100%;
  mix-blend-mode: difference;
  background-image: url("../images/logo.svg");
  background-size: contain;
  background-position: center bottom;
}

#asdf div:nth-child(1) {
  transform: translate(-50%, -100%) rotate(0deg);
  height: 100vh;
  width: 50vh;
}

#asdf div:nth-child(2) {
  transform: translate(-50%, -100%) rotate(0deg);
  height: 100vh; /* 분침은 시침보다 조금 길게 */
  width: 25vh; /* 분침은 시침보다 얇게 */
}

#asdf div:nth-child(3) {
  transform: translate(-50%, -100%) rotate(0deg);
  height: 100vh; /* 초침은 가장 길게 */
  width: 2.5vh; /* 초침은 가장 얇게 */
}