<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">:root {
    --transition-1: all 0.3s ease-in-out;
    --transition-2: all 0.1s ease-in-out;
}

html {
    font-size: 1rem;
    font-family: "PT Sans", sans-serif;
}

body {
    margin: 0;
    padding: 0;
}

.contaier {
    width: 100vw;
    height: 100vh;
}

.header {
    text-align: center;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
}

#autoComplete_results_list {
    height: 45vh;
    overflow: auto;
}

.no_result {
    margin: 0.15rem auto;
    padding: 0.6rem;
    max-width: 280px;
    border: 0.05rem solid #e3e3e3;
    list-style: none;
    text-align: left;
    font-size: 1.1rem;
    color: rgb(123, 123, 123);
    transition: all 0.1s ease-in-out;
    background-color: #fff;
    border-radius: 0 0 1rem 1rem;
    outline: none;
  }

.no_result:hover {
    cursor: default;
    background-color: #fff;
    border: 0.05rem solid #e3e3e3;
}

.no_result:focus {
    cursor: default;
    background-color: #fff;
    border: 0.05rem solid #e3e3e3;
}



.github-corner {
    transition: var(--transition-1);
}

.mode {
    margin-top: 20px;
}

.toggele {
    display: flex;
    position: abolute;
    border: 1px solid #ffc6c6;
    height: 35px;
    width: 120px;
    border-radius: 50px;
    justify-content: flex-start;
    align-content: center;
    transition: var(--transition-1);
}

.toggeler {
    display: grid;
    cursor: pointer;
    background-color: rgba(255, 198, 198, 1);
    color: #fff;
    height: 25px;
    width: 60px;
    border-radius: 50px;
    margin: 5px;
    text-align: center;
    align-content: center;
    align-self: flex-start;
    transition: var(--transition-1);
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -webkit-touch-callout: none;
}

.toggeler:hover {
    width: 70px;
    background-color: rgba(255, 122, 122, 0.7);
}

.toggeler::selection {
    color: #fff;
}

.strict {
    display: inline;
}

.loose {
    display: inline;
}

.selection {
    
    font-size: 2rem;
    font-weight: bold;
    color: #ffc6c6;
    transition: var(--transition-1);
}

.selection::selection {
    color: #64ceaa;
}

.footer {
    display: flex;
    width: 100vw;
    position: absolute;
    bottom: 2rem;
    color: rgb(147, 147, 147);
    justify-content: center;
    transition: var(--transition-1);
}

.footer&gt;div&gt;a {
    text-decoration: none;
    color: rgb(147, 147, 147);
}

.footer&gt;div&gt;a::selection {
    color: rgba(255, 122, 122, 1);
}

.copyrights {
    font-size: 0.8rem;
}

.copyrights::selection {
    color: rgb(147, 147, 147);
}

.copyrights&gt;a::selection {
    color: rgb(147, 147, 147);
}

@media only screen and (max-width: 600px) {
    .selection {
        margin-top: 15vh;
    }

    .footer {
        bottom: 1.5rem;
        transition: var(--transition-1);
    }
}

@media only screen and (max-height: 500px) {
    .footer {
        display: none;
    }
}</pre></body></html>