/* ===========================
   CSS Variables (Theme)
   =========================== */
:root {
  /* Colors */
  --bg-color: #ffe;
  --text-color: #228567;
  --name-color: #000;
  --date-color: #808080;
}

/* ===========================
   Global Styles
   =========================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: var(--bg-color);
  font: 14px/1.4 sans-serif;
  overflow: hidden;
}

/* ===========================
   Main Canvas Container
   =========================== */
#main {
  position: relative;
  width: 1100px;
  height: 680px;
}

#canvas {
  width: 1100px;
  height: 680px;
}

/* ===========================
   Love Letter Content
   =========================== */
#letter {
  position: absolute;
  width: 400px;
  height: 425px;
  left: 60px;
  top: 80px;
  display: none;
  font-size: 16px;
  color: var(--text-color);
}

/* ===========================
   Time Counter Display
   =========================== */
#clock-box {
  position: absolute;
  left: 60px;
  top: 550px;
  font-size: 28px;
  opacity: 0;
  transition: opacity 0.5s;
}

#clock-text {
  color: var(--date-color);
}

#clock-text .name {
  color: var(--name-color);
}

#clock {
  margin-left: 48px;
}

#clock .digit {
  font-size: 64px;
}
