/* styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    height: 100vh;
    overflow: hidden;
    background: linear-gradient(45deg, red, orange, yellow, lime, green, lime,#00ff6a, cyan, blue, violet, red);
    background-size: 800% 800%;
    animation: gradient 800s ease infinite;
}

@keyframes gradient {
    0% { background-position: 0% 0%; }
    25% { background-position: 100% 0%; }
    50% { background-position: 100% 100%; }
    75% { background-position: 0% 100%; }
    100% { background-position: 0% 0%; }
}
  
  .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #fff;
  }
  
  .clock-container, .date-container {
    text-align: center;
    margin: 20px;
  }
  
  .infoteks {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
    font-size: 25px;
  }
  .date, .week-info {
    font-size: 20px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }

  .clock {
    font-size: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6); /* Bayangan teks */
  }
  
  button {
    margin-top: 10px;
    padding: 10px 20px;
    font-size: 1em;
    background-color: #fff;
    color: #333;
    border: none;
    border-radius: 5px;
    cursor: pointer;
  }
  
  button:hover {
    background-color: #ddd;
  }
  