/* index.css */

/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
  }
  
  /* Set background color and text color */
  body {
    background-color: #1a1a1a;
    color: #e0e0e0;
  }
  
  /* Center the content vertically and horizontally */
  body,
  #start-text,
  #start-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    flex-direction: column;
  }
  
  /* Styling for the main text */
  #main-text {
    font-size: 24px;
    text-align: center;
    margin-bottom: 10px;
  }
  
  /* Styling for the description text */
  #description-text {
    font-size: 16px;
    text-align: center;
    margin-bottom: 20px;
  }
  
  /* Styling for the start button container */
  #start-button-container {
    margin-top: 20px;
  }
  
  /* Styling for the start button */
  #start-button {
    padding: 10px 20px;
    background-color: rgb(0, 145, 0);
    border: none;
    color: #e0e0e0;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  /* Hover effect on start button */
  #start-button:hover {
    background-color: rgb(0, 200, 0);
  }
  
  /* Media query for responsive layout on smaller screens */
  @media (max-width: 768px) {
    /* Adjust font sizes for smaller screens */
    #main-text {
      font-size: 20px;
    }
    
    #description-text {
      font-size: 14px;
    }
    
    #start-button {
      font-size: 16px;
    }
  }
  