* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #0f2027, #203a43, #2c5364);
  font-family: 'Courier New', monospace;
}

.container {
  text-align: center;
  color: #fff;
}

#hora {
  font-size: 5rem;
  letter-spacing: 4px;
  font-weight: bold;
}

#data {
  margin-top: 10px;
  font-size: 1.3rem;
  color: #a0e7e5;
  text-transform: capitalize;
}

@media (max-width: 600px) {
  #hora {
    font-size: 3rem;
  }

  #data {
    font-size: 1rem;
  }
}
