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

  body {
    font-family: 'Helvetica Neue', sans-serif;
    
    /* background: linear-gradient(135deg, #ffe6e6, #ffd9d9); */
    
  }

  h1 {
    font-size: 3em;
    margin-bottom: 0.2em;
  }

  h2 {
    font-weight: normal;
    margin-bottom: 1em;
  }

  #countdown {
    font-size: 2.5em;
    margin-top: 0.5em;
  }

  #countdown-container {
    background-image: url("destination.avif");
    background-position: center;
    background-size: cover;
    height: 100vh;
    padding: 20px;
    color: #564030;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;

  }

  .details-text{
    margin-top: 20%;
  }

  /* Optional small animation */
  @keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
  }

  #countdown {
    animation: pulse 2s infinite;
  }

  /* Responsive */
  @media (max-width: 500px) {
    h1 { font-size: 2em; }
    h2 { font-size: 1.2em; }
    #countdown { font-size: 2em; }
  }