/* Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  /* Body styling */
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(to bottom right, #ffc0cb, #ffb6c1);
    color: #4a4a4a;
    min-height: 100vh;
    /* Remove or change any 'display: flex; flex-direction: column; align-items: center;'
       if it conflicts with your layout. */
  }
  
  /* Container that previously held buttons + timer */
  .main-content {
    display: flex;               
    justify-content: space-between; 
    align-items: center;         
    width: 90%;                  
    max-width: 1200px;           
    margin: 40px auto;           
    gap: 20px;                   
  }
  
  /* (Unused now, but leaving it in case you want to add buttons again) */
  .btn {
    background-color: #e60073;  
    color: #fff;
    text-decoration: none;      
    padding: 15px 20px;
    border: none;
    border-radius: 8px;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
  }
  
  .btn:hover {
    background-color: #cc0066;
  }
  
  /* Timer Container Box */
  .timer-container {
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 100px 150px;
  }
  
  /* Names Header */
  .names-header {
    margin-bottom: 20px;
  }
  
  .names-header h1 {
    font-size: 5rem;  
    color: #e60073;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  
  /* Timer Container Headline */
  .timer-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #e60073;
  }
  
  /* Timer Display */
  .timer {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.4rem;
    justify-content: center;
    align-items: center;
    margin: 20px 0;
  }
  
  .timer span {
    background-color: #fff;
    border-radius: 8px;
    padding: 12px 16px;
    min-width: 70px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    font-weight: bold;
  }
  
  /* Heart Animation */
  .heart {
    display: inline-block;
    color: #e60073;
    font-size: 2.5rem;
    animation: pulse 1s infinite alternate;
    margin-top: 20px;
  }
  
  .heart-inline {
    color: #e60073;
  }
  
  @keyframes pulse {
    0% {
      transform: scale(1);
    }
    100% {
      transform: scale(1.2);
    }
  }
  