body {
    margin: 0;
    padding: 0;
    height: 100vh;

    align-items: center;
background: rgba(000, 000, 000); /* Black overlay with 50% transparency */
    position: relative;
	font-family: "Work Sans", sans-serif;
	font-weight: 300;
	font-style: normal;
}

body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(111,111, 111, 0.1); /* Black overlay with 50% transparency */

}

/* Navbar */
.navbar .nav-item {
  font-size: .8rem;
  font-weight: 400; }
  .navbar .nav-item.active .nav-link {
    background-color: rgba(255, 255, 255, 0.2); }
  .navbar .nav-item .nav-link {
    margin-left: 2px;
    margin-right: 2px;
    padding-top: 15px;
    padding-bottom: 15px;
    padding-left: 10px;
    padding-right: 10px;
    -webkit-transition: .3s all ease;
    -o-transition: .3s all ease;
    transition: .3s all ease;
    border-radius: 4px; }
    .navbar .nav-item .nav-link.disabled {
      opacity: .5; }
    .navbar .nav-item .nav-link:hover {
      background-color: rgba(255, 255, 255, 0.2); }
  .navbar .nav-item .wrap-icon {
    font-size: 20px; }

.navbar.navbar-dark .nav-item .nav-link {
  color: #fff; }
  .navbar.navbar-dark .nav-item .nav-link:hover {
    color: #fff; }




.navbar.bg-primary {
  -webkit-box-shadow: 0 2px 5px -2px rgba(3, 126, 243, 0.5);
  box-shadow: 0 2px 5px -2px rgba(3, 126, 243, 0.5); }



.quote-container {
    display: flex;
    justify-content: center;
    align-items: center;
    
    height: 75%; /* Full height of the viewport */
    padding: 20px; /* Add padding to prevent overflow */
    box-sizing: border-box; /* Include padding in height calculation */
}
.quote-box {
    background: rgba(0, 0, 0, 0.5); /* Black box with 50% transparency */
    padding: 10px;
    border-radius: 10px;
    width: 90%; /* Set width to 50% of the screen */

}



.quote {
    font-size: 1vw; /* Responsive font size based on viewport width */
    margin: 0;
    color: #ffffff; /* White text for the quote */
}

.author {
    font-size: 1; /* Responsive font size for the author's name */
    margin-top: 10px;
    color: #aaaaaa; /* Light gray for the author's name */
}

.footer {
    width: 100%; /* Full width */
    height: 50px; /* Fixed height */
    background-color: rgba(81, 81, 81, 0.8); /* Light grey background */
    position: absolute;
    bottom: 0; /* Stick to the bottom */
    z-index: 2; /* Ensure the footer is above the overlay */
}


.site-title {
    color: rgba(204, 85, 0, 0.2); /* White text for the title */
    font-size: 4vw; /* Responsive font size based on viewport width */
    margin: 10px 0; /* Margin for spacing */
    z-index: 2; /* Ensure the title is above the overlay */
    text-align: center; /* Center the title */
}

form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

input[type="text"] {
    flex-grow: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
}

button {
    padding: 10px 20px;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

button:hover {
    background-color: #218838;
}



h1 {
    color: #007bff;
    text-align: center;
    margin-bottom: 25px;
}

.results h2 {
    font-size: 1.2em;
    color: #007bff;
    border-bottom: 2px solid #007bff;
    padding-bottom: 5px;
}

ul {
    list-style: none;
    padding: 0;
}

li {
    background: #e9ecef;
    padding: 10px;
    margin-bottom: 8px;
    border-radius: 4px;
    border-left: 5px solid #007bff;
}