<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #f4f4f4;
    color: #333;
}

header {
    background-color: #4CAF50;
    color: #fff;
    padding: 20px;
    text-align: left; /* Align text to the left */
    display: flex;
    align-items: center;
    justify-content: space-between; /* Space out the elements */
}

.image-container {
    width: 80px; /* Adjust the size of the logo */
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 20px; /* Add some space between the image and the text */
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.header-text {
    flex-grow: 1; /* Allow the text to take up the remaining space */
    text-align: left; /* Keep the text aligned to the left */
}

.header-text h1 {
    margin: 0; /* Remove any margin */
    font-size: 2.5em;
}

.header-text p {
    margin: 5px 0 0 0; /* Small margin for the paragraph */
    font-size: 1.2em;
}


section {
    padding: 20px;
    margin: 20px auto;
    max-width: 1000px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 2.5em;
    margin-bottom: 10px;
}

p {
    font-size: 1.1em;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #4CAF50;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.btn:hover {
    background-color: #45a049;
}

footer {
    text-align: center;
    padding: 20px 0;
    background-color: #333;
    color: #fff;
}

.github-btn {
    background-color: #333;
    margin-top: 20px;
}

.github-btn:hover {
    background-color: #24292e;
}


/* Container for Search Bar */
.container {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.269);
    padding: 40px 20px;
    margin: 100px auto;
    width: 60%;
    border-radius: 10px;
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.2);
  }


  /* Styling for input and button */
  input[type="text"] {
    padding: 15px;
    width: 350px;
    border: 2px solid #29a34a;
    border-radius: 5px;
    outline: none;
    margin-right: 10px;
    font-size: 18px;
    transition: 0.3s ease-in-out;
  }

  input[type="text"]:focus {
    border-color: #ffcc00;
  }


  /* Styling the Results Section */
  #results {
    margin-top: 30px;
    text-align: left;
    width: 80%;
    margin: 0 auto;
  }
  .container ul {
    list-style: none;
    padding-left: 0;
  }

  .container li {
    background-color: #ffffff;
    padding: 15px;
    margin: 8px 0;
    border-radius: 8px;
    box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .container li a {
    text-decoration: none;
    color: #007bff;
    font-weight: bold;
    font-size: 18px;
  }

  .container li a:hover {
    color: #0056b3;
  }

  .stars {
    background-color: #ffcc00;
    padding: 6px 10px;
    border-radius: 20px;
    color: #333;
    font-weight: bold;
    font-size: 14px;
  }

  /* Add hover effect for a more interactive feel */
  .container li:hover {
    background-color: #eef2f7;
  }
  .image-container {
    width: 80px; /* Adjust the size of the circle */
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .image-container img {
    width: 200%;
    height: 200%;
    object-fit: cover;
  }
</pre></body></html>