/*
 *   Analog Clock
 *   Author: Hector Martin Valencia Herrera
 *   Website: hecthoringo <https://hecthoringo.com>
 *   Email: hector.valencia@hecthoringo.com
 *   License: All rights reserved.
 *   Copyright (c) 2025 Hector Valencia
 */
* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #0f1721;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  overflow: hidden;
}

#clock {
  display: flex;
  justify-content: center;
  align-items: center;
}

canvas {
  width: 100vw;
  height: 100vw;
  max-width: 800px;
  max-height: 800px;
}

/*# sourceMappingURL=style.css.map */
