body {
    margin: 0;
    font-family: sans-serif;
    background: linear-gradient(to bottom right, #f2f2f2, #e0e0e0); /* Gradasi warna kuning */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
}

.time {
    font-size: 24px;
    margin-bottom: 20px;
}

.title {
    font-size: 60px;
    font-weight: bold;
    text-transform: uppercase;
    animation: blink 1s infinite;
}

.description {
    font-size: 20px;
    font-style: italic;
    margin-top: 10px;
}

@keyframes blink {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
    100% {
        opacity: 1;
    }
}


@media (max-width: 768px) {
    /* Gaya untuk layar dengan lebar maksimal 768px (misalnya, tablet) */
    .container {
      padding: 20px;
    }
  
    .title {
      font-size: 40px;
    }
  
    .description {
      font-size: 16px;
    }

    .time {
        font-size: 12px;
    }
  }
  
  @media (max-width: 480px) {
    /* Gaya untuk layar dengan lebar maksimal 480px (misalnya, smartphone) */
    .title {
      font-size: 30px;
    }

    .description {
        font-size: 14px;
      }
  
      .time {
          font-size: 11px;
      }
  }