
    body {
      font-family: Arial, sans-serif;
      background-color: #c0dde5;
      margin: 0;
      padding: 0;
    }

    .container {
      max-width: 800px;
      margin: 0 auto;
      padding: 20px;
      text-align: center;
    }

    h1 {
      color: #333;
      margin-bottom: 20px;
    }

    .options {
      display: flex;
      justify-content: space-between;
      margin-top: 40px;
    }

    .option {
      flex-basis: 19%;
      background-color: #fff;
      border-radius: 6px;
      padding: 20px;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.3s ease;
      cursor: pointer;
      text-decoration:none;
    }

    .option:hover {
      transform: translateY(-5px);
      background-color:  #007bff;
      color: #fff;
      text-decoration:none;
      
    }

   

    .option h2 {
      color: #333;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .option  h2:hover {
      color: #faf9f9;
      font-size: 18px;
      margin-bottom: 10px;
    }
    .option p {
      color: #666;
      font-size: 14px;
      text-decoration:none;
    }
  