@import url("https://fonts.googleapis.com/css2?family=Urbanist:ital,wght@0,100..900;1,100..900&display=swap");

@font-face {
  font-family: "myFont";
  src: url("fonts/OffBit-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: "myFont";
  src: url("fonts/OffBit-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "myFont2";
  src: url("fonts/ndot.otf") format("opentype");
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

:root {
  --brand: #f60900;
  --white: #fff;
  --white-2: #e0e0e0;
  --white-3: #888888;
  --black: #000000;
  --black-2: #1c1a1a;
  --black-3: #2c2c2c;
  --border: 1px solid #1e1e1e;
  --shape: squircle;
  --myFont: "myFont", sans-serif;
  --myFont2: "myFont2", sans-serif;
  --inset-shadow: 0px 1.5px 1px 0px #ffffff0f;
  --emboss-shadow: 0px 1.5px 1px -1px #ffffff33 inset;
}

body {
  font-family: "Urbanist", sans-serif;
  background: var(--black);
  color: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

.content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  min-height: 100vh;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;

  background-position: center ;
  background-size: cover;
}

.clock-card {
  background: #58585838;
  width: 100%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--emboss-shadow);
  backdrop-filter: blur(5px);
}

.display-time {
  display: flex;
  align-items: start;
  justify-content: center;
  font-size: 3rem;
  color: var(--white);
  width: 100%;
  gap: 2px;
}

.hh,
.mm,
.ss {
  font-family: var(--myFont2);

  color: var(--white);
}

#mm {
  color: var(--brand);
}

#ss {
  color: var(--white);
  font-size: 1rem;
}
