/* 
  Style guide:
    - <system-color> keywords should be in PascalCase
    - <named-color> keywords should be in camelCase
*/

:root {
  --f-default: system-ui, sans-serif;
  --c-background: lavenderBlush;
  --c-text: darkOliveGreen;
}

body {
  background-color: var(--c-background);
  font-family: var(--f-default);
  margin: 0;
  padding: 0;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

#time {
  color: var(--c-text);
  font-size: 15vw;
  font-family: var(--f-default);
  font-optical-sizing: auto;
  font-weight: regular;
  font-style: normal;
  user-select: none;
}

noscript {
  position: fixed;
  top: 0;
  left: 0;
  width: 100dvw;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
