@import url('../fonts/css2.css');
/* new header */
    header {
      background: linear-gradient(to left, #4facfe, #00f2fe);
      padding: 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      color: white;
    }
    .logo span:first-child {
      font-size: 26px;
      font-weight: bold;
    }
    .logo span:last-child {
      font-size: 40px;
    }
    nav a {
      text-decoration: none;
      color: white;
      background-color: rgba(255, 255, 255, 0.2);
      padding: 10px 20px;
      border-radius: 30px;
      transition: background-color 0.3s, color 0.3s;
      font-weight: bold;
    }
    nav a:hover {
      background-color: white;
      color: #00c6ff;
    }
body {
    margin: 0;
    padding: 0;
    font: bold 14px 'Cairo';
    line-height: 2em;
}

h1 {
    font: bold 20px 'Cairo';
}

/* css-check */
    textarea {
      width: 100%;
      height: 200px;
      font-family: monospace;
      margin-bottom: 10px;
      direction: ltr;
    }

    button {
      padding: 10px 20px;
      font-size: 16px;
      cursor: pointer;
      font-family: 'Cairo';
    }

    .result {
      background: #fff;
      padding: 15px;
      margin-top: 10px;
      border: 1px solid #ccc;
      white-space: pre-wrap;
      direction: ltr;
    }

    .container {
      font-family: 'Cairo';
      max-width: 90%;
      margin: 50px auto;
      background-color: white;
      padding: 30px;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      border-radius: 8px;
    }

    .highlight {
      display: block;
      padding: 5px;
      margin-bottom: 10px;
      border-radius: 4px;
      font-family: monospace;
      white-space: pre-wrap;
    }

    .highlight-selector {
      background-color: yellow;
      padding: 2px 4px;
      border-radius: 3px;
      font-weight: bold;
      color: black;
    }

    .title {
      color: red;
      font-weight: bold;
      margin-top: 10px;
    }
    