@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Onest:wght@100..900&family=Unbounded:wght@200..900&display=swap');

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #18181b;
    color: #fff;
}

.search-bar-container {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
}

.search-bar {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 10px 20px;
    padding-left: 40px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    width: 300px;
    background-image: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIxNiIgaGVpZ2h0PSIxNiIgZmlsbD0iI2FhYSIgY2xhc3M9ImJpIGJpLXNlYXJjaCIgdmlld0JveD0iMCAwIDE2IDE2Ij4KICA8cGF0aCBkPSJNMTUgMTMuNTdsLTQuNzUtNC43NUMxMC40NyA4LjQ5IDExIDcuMjYgMTEgNmE1IDUgMCAxMC01IDUgNS4wMDQgNS4wMDQgMCAwMDAgMTAgNSAyLjUgMCAwMDEtMS4yNSAxLjI1TDkuNTcgMTV6T00gNiA4QTAgMCAxMS0wIDEwIDAgMCAxIDYgOHoiLz4KPC9zdmc+Cg==');
    background-repeat: no-repeat;
    background-position: 10px center;
}

.search-bar::placeholder {
    color: #fff;
}

footer {
    color: #fff;
    padding: 10px 0;
    text-align: center;
    position: fixed;
    width: 100%;
    bottom: 0;
    font-size: 14px;
    font-family: 'Onest', sans-serif;
}

.footer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-info {
    margin: 5px 0;
}

.footer-info a {
    color: #aaa;
    text-decoration: none;
    margin: 0 10px;
}

.footer-info a:hover {
    color: #fff;
}

.login-button-container {
    position: fixed;
    top: 10px;
    right: 10px;
}

.button {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 10px 20px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    cursor: pointer;
}

.button:hover {
    background-color: #444;
    border-color: #666;
}

.title-container {
    position: fixed;
    top: 10px;
    left: 0.75%;
}

.website-title {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 24px;
    color: #fff;
}

.input {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    border-radius: 20px;
    padding: 10px 20px 10px 20px;
    font-family: 'Onest', sans-serif;
    font-size: 14px;
    width: 300px;
    margin-bottom: 10px;
}

.content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.lr-p2 {
    text-decoration: none; /* #aaa but its way too black (not in sense of racism, but its basically unreadable) */
}

/* CSS width */
::-webkit-scrollbar {
  width: 4px;
}

/* CSS Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* CSS Handle */
::-webkit-scrollbar-thumb {
  background: light grey; 
  border-radius: 10px;
}

/* CSS Hover - light grey */
::-webkit-scrollbar-thumb:hover {
  background: grey;
}
