/* General Body Styling */
body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  
  /* Countdown Styling */
  .countdown {
    text-align: center;
    background-color: #4caf50;
    color: white;
    padding: 20px;
  }
  
  .countdown h1 {
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  .timer {
    display: flex;
    justify-content: center;
    gap: 20px;
  }
  
  .time-box {
    background-color: white;
    color: #333;
    padding: 20px;
    border-radius: 10px;
  }
  
  .time-box p {
    font-size: 2rem;
    margin: 0;
  }
  
  .time-box span {
    font-size: 1rem;
  }
  
  /* Project Timeline Styling */
  .timeline {
    margin: 50px auto;
    max-width: 900px;
    padding: 0 20px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
  }
  
  h1 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
  }
  
  /* Steps Styling */
  .step {
    padding-left: 40px;
    position: relative;
    margin-bottom: 40px;
  }
  
  .step-number {
    position: absolute;
    left: -60px;
    top: 0;
    background-color: #4caf50;
    color: white;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
  }
  
  .step-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  }
  
  .step-content h2 {
    font-size: 1.5rem;
    color: #4caf50;
    margin-bottom: 10px;
  }
  
  .step-content p {
    font-size: 1rem;
    line-height: 1.5;
  }
  
  /* Code Snippets Styling */
  .code-snippet {
    background-color: #f9f9f9;
    padding: 20px;
    margin: 20px 0;
    border-left: 5px solid #4caf50;
  }
  
  pre {
    background-color: #1e1e1e;
    color: #f5f5f5;
    padding: 20px;
    border-radius: 5px;
    overflow-x: auto;
  }
  button.hover {
    background-color: #1a1a1a; /* Change color as needed */
    color: white;
    border: none;
    margin: 30px 30px;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease; /* Smooth transition */
}

button.hover:hover {
    background-color: #960680; /* Darker shade on hover */
}  