/* Reset */
* { margin:0; padding:0; box-sizing:border-box; }
html, body { height:100%; }

/* Background */
body {
  background: #000 url('images/TaiO.jpg') no-repeat center bottom;
  background-size: cover;
  font-family: Arial, sans-serif;
  color: #fff;
  overflow: hidden;
}

/* Centering */
.container {
  display: flex;
  align-items: center;
  justify-content: center;
  height:100%;
}

/* Content box */
#content {
  background: rgba(0,0,0,0.6);
  padding:2rem;
  border-radius:8px;
  text-align:center;
  max-width:90%;
}

/* Date */
#date {
  font-size:1.3rem;
  opacity:0.7;
  margin-bottom:0.3rem;
}

/* Clock – much bigger */
#display {
  font-size:5rem;
  font-weight:bold;
  margin-bottom:1rem;
  line-height:1;
}

/* Quote */
#quote {
  font-size:1.5rem;
  line-height:1.4;
  font-style:italic;
  margin:1rem 0;
}

/* Buttons */
button {
  background:transparent;
  border:2px solid #fff;
  color:#fff;
  border-radius:4px;
  padding:0.5rem 1rem;
  margin:0.3rem;
  cursor:pointer;
  font-size:1rem;
  transition: .2s;
}
button:hover {
  background:#fff; color:#000;
}

/* Fullscreen button */
#maximizeBtn {
  position:fixed;
  top:1rem; right:1rem;
}

/* Responsive adjustments */
@media(max-width:600px) {
  #display { font-size:3.5rem; }
  #quote   { font-size:1.2rem; }
  button   { font-size:0.9rem; padding:0.4rem 0.8rem; }
}