:root {
    --tf-font-text: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --tf-font-display: "Inter Display", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    --tf-font-fancy: "Inter", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Segoe UI Variable Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, "Segoe UI Symbol", "Apple Symbols", "Noto Sans Symbols", "Noto Sans Symbols 2", "Noto Sans Math", "Arial Unicode MS", "Apple Color Emoji", "Segoe UI Emoji", sans-serif;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    outline: 0;
    scroll-behavior: smooth;
}

html,
body {
    height: 100%;
    line-height: 1.5;
}

body {
    font-family: var(--tf-font-text);
    font-weight: 400;
    background: #f5f6fa;
}

::-webkit-scrollbar {
    width: 2px;
    height: 2px;
}

::-webkit-scrollbar-track {
    background: #f1f2f7;
}

::-webkit-scrollbar-thumb {
    background: #4f46e5;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: var(--tf-font-display);
    font-weight: 300;
}

h1 {
    font-size: 1.9em;
    font-weight: 600;
    color: #6b6b70;
    text-align: center;
}

h2 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 5px;
    font-size: 17px;
    color: #0f172a;
    text-align: left;
    text-transform: uppercase;
    border-radius: 10px;
}

h4 {
    float: left;
    width: 100%;
    margin: 0;
    padding: 10px;
    color: #64748b;
    text-align: left;
    text-transform: uppercase;
    backface-visibility: hidden;
}

a {
    text-decoration: none;
}

ul {
    text-align: left;
    list-style-type: disclosure-closed;
}

input::placeholder {
    color: #94a3b8;
    opacity: 1;
}

header {
    float: left;
    width: 100%;
    margin: 0;
    text-align: center;
    background: #4f46e5;
    box-shadow: 0 8px 10px 0 rgb(30 27 75 / 25%);
    z-index: 9999;
}

header a {
    display: block;
    padding: 5px 0 0;
    font-family: var(--tf-font-display);
    font-size: 25px;
    color: #fff;
    letter-spacing: 3px;
}

header .site-title span {
    display: block;
    margin-top: -9px;
    margin-bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.site-title img {
    width: 245px;
    height: auto;
    padding-top: 0;
}

#mobile-fly-menu {
    display: block;
    position: absolute;
    float: left;
    width: 50px;
    height: 40px;
    cursor: pointer;
}

#mobile-fly-menu span {
    display: block;
    position: absolute;
    left: 12px;
    height: 4px;
    background: #ffffff82;
    border-radius: 2px;
    transform: rotate(0);
    transition: 0.25s ease-in-out;
}

#mobile-fly-menu span:nth-child(1) {
    top: 10px;
    width: 38px;
}

#mobile-fly-menu span:nth-child(2) {
    top: 19px;
    width: 30px;
}

#mobile-fly-menu span:nth-child(3) {
    top: 28px;
    width: 22px;
}

#mobile-fly-menu:hover span {
    background: #fff;
}

.menusection {
    display: none;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    float: left;
    width: 70%;
    padding: 4px;
    background: #4f46e5;
    box-shadow: 8px 0 17px 0 rgb(30 27 75 / 28%);
    z-index: 9999;
    animation: tfMenuSlideIn 0.42s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform, opacity;
}

.menusection .close {
    position: absolute;
    top: 10px;
    right: -35px;
    padding: 10px 17px;
    font-size: 18px;
    color: #fff;
    background: #4f46e5;
    border: none;
    border-radius: 0 3px 3px 0;
    box-shadow: 8px 0 10px 0 rgb(30 27 75 / 28%);
    cursor: pointer;
    z-index: 3;
}

.menusection h2 a {
    margin: 0 0 3px;
    font-size: 14px;
    text-align: center;
    text-transform: capitalize;
}

.menusection img {
    width: 220px;
    height: auto;
}

@keyframes tfMenuSlideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes tfMenuItemIn {
    from {
        opacity: 0;
        transform: translateX(-14px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

@keyframes tfCloseBtnIn {
    from {
        opacity: 0;
        transform: scale(0.6) rotate(-90deg);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.menusection .close {
    animation: tfCloseBtnIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1) 0.25s backwards;
}

.menusection h2,
.menusection .bookmarks a,
.menusection .site-link {
    animation: tfMenuItemIn 0.4s cubic-bezier(0.22, 1, 0.36, 1) backwards;
}

.menusection h2 { animation-delay: 0.12s; }
.menusection .bookmarks a:nth-child(1)  { animation-delay: 0.16s; }
.menusection .bookmarks a:nth-child(2)  { animation-delay: 0.20s; }
.menusection .bookmarks a:nth-child(3)  { animation-delay: 0.24s; }
.menusection .bookmarks a:nth-child(4)  { animation-delay: 0.28s; }
.menusection .bookmarks a:nth-child(5)  { animation-delay: 0.32s; }
.menusection .bookmarks a:nth-child(6)  { animation-delay: 0.36s; }
.menusection .bookmarks a:nth-child(7)  { animation-delay: 0.40s; }
.menusection .bookmarks a:nth-child(8)  { animation-delay: 0.44s; }
.menusection .bookmarks a:nth-child(9)  { animation-delay: 0.48s; }
.menusection .bookmarks a:nth-child(n+10) { animation-delay: 0.52s; }
.menusection .site-link { animation-delay: 0.45s; }

@media (prefers-reduced-motion: reduce) {
    .menusection,
    .menusection .close,
    .menusection h2,
    .menusection .bookmarks a,
    .menusection .site-link {
        animation: none;
    }
}

.bookmarks {
    float: left;
    width: 100%;
    height: 80%;
    padding: 5px;
    overflow-y: scroll;
}

.menusection .bookmarks a {
    padding: 10px;
    font-family: var(--tf-font-text);
    color: #ffffff82;
    text-align: right;
    border-radius: 10px;
}

.menusection .bookmarks a:hover {
    color: #1e1b4b;
    background: #fff;
}

.site-link {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding-bottom: 20px;
}

.site-link a {
    display: block;
    padding: 3px 20px;
    font-size: 20px;
    text-align: left;
}

.site-link a:hover {
    color: #fff9;
}

.top-link a {
    display: inline-block;
    margin: 7px 2px;
    padding: 5px 10px;
    color: #fff;
    border-radius: 3px;
}

.top-link a:hover {
    color: #1e1b4b;
}

.toplink {
    float: left;
    margin-left: 5px;
}

.toplink a {
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px;
    color: #c7d2fe;
    background: #312e81;
    border-radius: 3px;
}

.toplink a:hover {
    color: #1e1b4b;
    background: #fff;
}


.cats a {
    display: inline-block;
    width: auto;
    margin: 5px;
    padding: 8px 20px;
    font-size: 18px;
    color: #fff;
    background: #0d9488;
    border: 1px solid;
    border-radius: 10px;
}

.cats a:hover {
    border-color: #0d9488;
}

.settings-share {
    float: left;
    width: 100%;
}

.settings {
    float: left;
    margin-top: 3px;
}

.settings input {
    width: 180px;
    padding: 2px;
    box-shadow: none;
    cursor: pointer;
}

.font-size {
    float: right;
    padding: 5px;
}

.font-size span {
    font-size: 13px;
    color: #ffffff82;
    text-transform: uppercase;
}

.slider {
    -webkit-appearance: none;
    appearance: none;
    width: 220px;
    height: 2px;
    background: #e2e8f0;
    border-radius: 3px;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    background: #4f46e5;
    border-radius: 50%;
    box-shadow: 1px 2px 4px 0 rgb(30 27 75 / 21%);
    cursor: pointer;
}

.slider::-moz-range-thumb {
    width: 25px;
    height: 25px;
    background: #4f46e5;
    border-radius: 50%;
    box-shadow: 1px 2px 4px 0 rgb(30 27 75 / 21%);
    cursor: pointer;
}

.share {
    display: block;
    float: right;
    font-size: 12px;
    color: #475569;
    text-transform: uppercase;
}

span.sharetext {
    display: inline-block;
    padding: 8px;
    font-size: 12px;
    color: #0f172a;
}

.addthis_inline_share_toolbox {
    float: right;
    margin: 5px 0;
}

.share-link {
    display: none;
}

.ssb_link,
.ssb_icon {
    display: inline-block;
}

.ssb_link {
    margin: 0.1em;
    color: #fff;
}

.ssb_icon {
    fill: none;
    stroke: #fff;
}

.ssb_icon--solid,
.ssb_icon--solidcircle {
    fill: #fff;
    stroke: none;
}

.ssb_icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top;
}

.ssb-small svg {
    margin: 0;
    vertical-align: middle;
}

.r-s-b {
    padding: 0.5em 0.75em;
    font-family: var(--tf-font-text);
    border-radius: 5px;
    transition: 25ms ease-out;
}

.ssb-facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.ssb-facebook:hover,
.ssb-facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}

.ssb-twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.ssb-twitter:hover,
.ssb-twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}

.ssb-email {
    background-color: #64748b;
    border-color: #64748b;
}

.ssb-email:hover,
.ssb-email:active {
    background-color: #475569;
    border-color: #475569;
}

.ssb-whatsapp {
    background-color: #25d366;
    border-color: #25d366;
}

.ssb-whatsapp:hover,
.ssb-whatsapp:active {
    background-color: #1da851;
    border-color: #1da851;
}

.ssb-pinterest {
    background-color: #bd081c;
}

.ssb-pinterest:hover {
    background-color: #8c0615;
}

.ssb-tumblr {
    background-color: #35465c;
}

.ssb-tumblr:hover {
    background-color: #222d3c;
}

.ssb-reddit {
    background-color: #5f99cf;
}

.ssb-reddit:hover {
    background-color: #3a80c1;
}

.ssb-google {
    background-color: #dd4b39;
}

.ssb-google:hover {
    background-color: #c23321;
}

.ssb-linkedin {
    background-color: #0077b5;
}

.ssb-linkedin:hover {
    background-color: #046293;
}

.ssb-xing {
    background-color: #1a7576;
}

.ssb-xing:hover {
    background-color: #114c4c;
}

.ssb-hackernews {
    background-color: #f60;
}

.ssb-hackernews:hover,
.ssb-hackernews:focus {
    background-color: #fb6200;
}

.ssb-vk {
    background-color: #507299;
}

.ssb-vk:hover {
    background-color: #43648c;
}

.ssb-telegram {
    background-color: #54a9eb;
}

.ssb-telegram:hover {
    background-color: #4b97d1;
}

main {
    margin-top: 10px;
}

main,
.conversordeletramain {
    float: left;
    width: 100%;
    padding: 2px;
}

main p {
    margin-bottom: 10px;
    text-align: center;
    padding: 5px;
}

.container {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
}

.arya-container {
    text-align: center;
}

.thenitesharya-text {
    position: sticky;
    top: 0;
    z-index: 999;
}

.thenitesharya-text .container {
    position: relative;
}

.thenitesharya-text p {
    margin: 5px 0 0;
    padding: 0;
    font-size: 12px;
    color: #64748b;
    text-transform: uppercase;
}

.thenitesharya-text .clear {
    position: absolute;
    top: 8px;
    right: 14px;
    width: 28px;
    height: 28px;
    padding: 0;
    font-size: 16px;
    line-height: 28px;
    color: #fff;
    text-align: center;
    background: #ef4444;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 999;
}

.thenitesharya-text .clear:hover {
    color: #fff;
    background: #b91c1c;
}

.thenitesharya-text .container:has(#thenitesharya-text:placeholder-shown) .clear,
#thenitesharya-text:placeholder-shown ~ .clear {
    display: none;
}

.thenitesharya-text .clear:hover {
    color: #0f172a;
}

#thenitesharya-text {
    display: block;
    width: 100%;
    padding: 5px 44px 5px 6px;
    font-family: var(--tf-font-text);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: 1px;
    text-align: center;
    background: #fff;
    border: 2px solid #4f46e5;
    border-radius: 10px;
    box-shadow: 0 8px 20px 0 rgb(79 70 229 / 15%);
}

#thenitesharya-text::placeholder {
    font-size: 18px;
    color: #94a3b8;
}

.formrow .formcol {
    float: left;
    width: 100%;
    text-align: left;
}

.formrow .formcol p {
    float: left;
    width: 48%;
    margin: 1%;
}

.formcol label {
    color: #475569;
}

.conversordeletralist,
.conversordeletrarecentlist {
    display: block;
    position: relative;
    float: left;
    width: 100%;
    padding: 7px;
    text-align: left;
    overflow: hidden;
}

.conversordeletra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    float: left;
    width: 100%;
    margin-bottom: 10px;
    text-align: center;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 2px 0 #e2e8f0;
    overflow: hidden;
    cursor: pointer;
}

.conversordeletra:hover {
    background: #f8fafc;
}

.conversordeletra p {
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font-family: var(--tf-font-fancy);
    font-size: 20px;
    color: #0f172a;
}

.conversordeletra:hover p {
    color: #4f46e5;
}

.conversordeletra span {
    display: none;
    position: absolute;
    left: 15px;
    bottom: 5px;
    font-size: 12px;
    font-weight: 600;
    font-variant-caps: all-small-caps;
    color: #475569;
    letter-spacing: 1px;
    z-index: 9;
}

.conversordeletra:hover span {
    display: block;
}

.conversordeletra div {
    padding: 10px;
    font-size: 13px;
    color: #ffffffb8;
    text-transform: uppercase;
    background: #4f46e5;
    border-radius: 0 10px 10px 0;
    cursor: pointer;
}

.conversordeletra div:hover {
    background: #3730a3;
}

.conversordeletra i {
    position: absolute;
    left: 10px;
    bottom: 5px;
    font-size: 10px;
    color: #475569;
}

.conversordeletra button,
#random-cloud button,
.share-link button {
    position: absolute;
    top: 5px;
    left: 5px;
    padding: 2px 10px;
    font-family: var(--tf-font-text);
    font-size: 13px;
    font-variant-caps: all-small-caps;
    color: #cbd5e1;
    letter-spacing: 1px;
    background: #0f172a;
    border: 1px solid #4f46e51f;
    border-radius: 50px;
    transition: margin-right 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

#random-cloud {
    width: 100%;
    height: 200px;
    padding-top: 10px;
    font-family: var(--tf-font-fancy);
    text-align: center;
    overflow: auto;
}

#random-cloud div {
    display: inline-block;
    position: relative;
    padding: 10px;
    color: #475569;
    border: 1px solid transparent;
    border-radius: 10px;
    cursor: pointer;
}

#random-cloud div:hover {
    color: #0f172a;
    background: #fff;
    border: 1px solid #e2e8f0;
}

#random-cloud button {
    top: -5px !important;
    right: -15px !important;
    padding: 3px 8px !important;
}

#random-cloud .size1 {
    font-size: 13px;
}

#random-cloud .size2 {
    font-size: 14px;
}

#random-cloud .size3 {
    font-size: 16px;
}

#random-cloud .size4 {
    font-size: 19px;
}

#random-cloud .size5 {
    font-size: 22px;
}

#random-cloud .size6 {
    font-size: 25px;
}

#random-cloud .size7 {
    font-size: 26px;
}

#random-cloud .size8 {
    font-size: 29px;
}

#random-cloud .size9 {
    font-size: 32px;
}

#random-cloud .size10 {
    font-size: 35px;
}

#fancy-info {
    position: absolute;
    top: -2000px;
    left: -3000px;
    width: 360px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 0 10px 0 rgba(30, 27, 75, 0.25);
    overflow: hidden;
    cursor: pointer;
    z-index: 10000;
}

#fancy-info.disappearing {
    display: none;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.1s, opacity 0.1s linear;
    transition-delay: 0.1s;
}

#fancytext-name {
    padding: 3px 4px;
    font-family: var(--tf-font-text);
    font-size: 16px;
    color: #ffffff80;
    text-align: center;
    background: #0f172a;
}

#fancy-info .textarea {
    display: block;
    width: 100%;
    padding: 10px;
    font-family: var(--tf-font-fancy);
    text-align: center;
    background: #eef2ff;
    border: none;
    cursor: text;
}

#fancy-info-copy-container {
    display: block;
    width: 100%;
    text-align: center;
}

#fancy-copy-btn {
    width: 140px;
    height: 30px;
    margin: 3px 0;
    font-family: var(--tf-font-text);
    font-size: 14px;
    font-weight: 600;
    color: #ffffff82;
    text-align: center;
    background: #059669;
    border: none;
    border-radius: 10px;
    cursor: pointer;
}

#fancy-copy-btn:hover {
    color: #fff;
}

#adsInPopupDialog {
    margin: 0 auto;
    padding-top: 12px;
    text-align: center;
}

.copiedalerts {
    display: block;
    top: 10%;
    right: 0;
    width: 200px;
    background: #3730a3;
    border-radius: 15px 0 0 15px;
    box-shadow: 0 0 20px 5px rgb(30 27 75 / 25%);
    overflow: hidden;
    z-index: 2147483647 !important;
}

.alert-header span {
    display: block;
    padding: 2px 10px;
    font-size: 16px;
    color: #ffffffbf;
    text-align: left;
    background: #0f172a;
}

.the_copied_text {
    width: 100%;
    padding: 5px 10px;
    font-family: var(--tf-font-fancy);
    font-size: 1rem;
    color: #fff;
    text-align: left;
    background: transparent;
    border: none;
}

.the_copied_text:focus {
    outline: none !important;
    border: 1px solid #fff;
    box-shadow: 0 0 10px #fff;
}

.flourish-popup {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    z-index: 999;
}

.hidden {
    display: none;
}

.popup-box {
    display: flex;
    flex-direction: column;
    width: 94%;
    max-width: 500px;
    max-height: 70vh;
    color: #fff;
    background: #312e81;
    border-radius: 12px;
    overflow: hidden;
}

.popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 0 0 16px;
    background: #0f172a;
}

.popup-header button {
    width: 50px;
    height: 50px;
    font-size: 1.3rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
}

.select-flourish {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin: 5px 0;
}

.select-flourish label {
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
}

#flourishSelect {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 10px 38px 10px 16px;
    font-family: var(--tf-font-text);
    font-size: 1rem;
    color: #0f172a;
    background-color: #fff;
    background-image: linear-gradient(45deg, transparent 50%, #0f172a 50%), linear-gradient(135deg, #0f172a 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 4px), calc(100% - 14px) calc(50% - 4px);
    background-size: 6px 6px, 6px 6px;
    background-repeat: no-repeat;
    border-radius: 18px;
    cursor: pointer;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}

#flourishList {
    flex: 1;
    padding: 12px;
    list-style: none;
    overflow-y: auto;
}

#flourishList .conversordeletra {
    box-shadow: none;
}

#flourishList .conversordeletra p {
    font-size: 1rem;
}

.flourishit {
    padding: 5px;
    text-align: center;
}

#flourishRegenerate {
    width: auto;
    padding: 15px 20px;
    font-family: var(--tf-font-text);
    font-size: 1.2rem;
    color: #fff;
    background: #0f172a;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    touch-action: manipulation;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background-color 0.12s ease;
}

#flourishRegenerate:hover {
    background-color: #1e293b;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(15, 23, 42, 0.25);
}

#flourishRegenerate:active {
    transform: translateY(1px) scale(0.97);
    box-shadow: 0 3px 8px rgba(15, 23, 42, 0.2);
}

.ads {
    display: table !important;
    float: left;
    clear: both;
    width: 100% !important;
    margin: 12px 0 !important;
}

.separator {
    display: none;
}

p.aryapage {
    float: left;
    width: 100%;
}

a.aryapage-next {
    visibility: hidden;
}

.loadmore {
    float: left;
    width: 100%;
}

p.loadmore {
    clear: both;
    margin-bottom: 0;
    text-align: center;
}

#load-more {
    margin: 10px 0 5px;
    padding: 10px 55px;
    font-family: var(--tf-font-text);
    font-size: 17px;
    color: #475569;
    text-align: center;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 10px;
    cursor: pointer;
}

#load-more:hover {
    color: #0f172a;
    background: #eef2ff;
}

.page-load-status {
    float: left;
    width: 100%;
    color: #64748b;
    text-align: center;
}

.infinite-scroll-last {
    margin: 2px 0;
    padding: 2px 0;
    font-size: 20px;
}

.aload {
    position: relative;
    width: 4em;
    height: 1em;
    margin: 10px auto;
    font-size: 20px;
}

.aload span {
    display: block;
    position: absolute;
    width: 1em;
    height: 1em;
    background: #4f46e5;
    border: 2px solid #ffffff78;
    border-radius: 0.5em;
    animation-duration: 0.5s;
    animation-timing-function: ease;
    animation-iteration-count: infinite;
}

.aload span:nth-child(1) {
    left: 0;
    animation-name: reveal;
}

.aload span:nth-child(2) {
    left: 0;
    animation-name: slide;
}

.aload span:nth-child(3) {
    left: 1.5em;
    animation-name: slide;
}

.aload span:nth-child(4) {
    left: 3em;
    animation-name: reveal;
    animation-direction: reverse;
}

@keyframes reveal {
    from {
        transform: scale(0.001);
    }

    to {
        transform: scale(1);
    }
}

@keyframes slide {
    to {
        transform: translateX(1.5em);
    }
}

#scroll,
.randomgen {
    right: 0;
    font-family: var(--tf-font-text);
    color: #64748b;
    background: #fff;
    border: none;
    border-radius: 2px;
    box-shadow: 1px 2px 4px 0 rgba(30, 27, 75, 0.21);
    cursor: pointer;
    z-index: 99;
}

#scroll {
    display: none;
    position: fixed;
    bottom: 20%;
    padding: 8px 10px;
    font-size: 20px;
}

.randomgen {
    display: block;
    position: absolute;
    padding: 10px 10px 8px;
    font-size: 15px;
    text-transform: uppercase;
}

#scroll:hover,
.randomgen:hover {
    color: #fff;
    background: #4f46e5;
}

#scroll img,
.randomgen img {
    width: 23px;
    height: 23px;
}

.links {
    float: left;
    clear: both;
    width: 100%;
    padding-bottom: 10px;
    text-align: center;
    background: #fff;
}

.links a {
    display: inline-block;
    margin-bottom: 5px;
    padding: 10px 16px;
    font-size: 15px;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    white-space: nowrap;
    background: #4f46e5;
    border-radius: 10px;
    cursor: pointer;
}

.links a:hover {
    color: #fff;
    background: #0f172a;
}

p.other-platform {
    text-align: center;
}

p.other-platform img {
    width: auto;
    height: 90px;
}

footer {
    float: left;
    width: 100%;
    padding: 36px 16px 28px;
    font-family: var(--tf-font-text);
    font-size: 16px;
    line-height: 1.75;
    color: #475569;
    text-align: left;
    text-overflow: ellipsis;
    background: #eef0f7;
    border-top: 1px solid #e2e8f0;
    overflow: hidden;
}

footer > * {
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

footer h2 {
    float: none;
    position: relative;
    margin: 32px auto 14px;
    padding: 0 0 0 14px;
    font-family: var(--tf-font-display);
    font-size: 1.45em;
    font-weight: 700;
    line-height: 1.3;
    color: #1e1b4b;
    text-transform: none;
    letter-spacing: -0.2px;
    border-radius: 0;
}

footer h2::before {
    content: "";
    position: absolute;
    top: 4px;
    bottom: 4px;
    left: 0;
    width: 4px;
    background: #4f46e5;
    border-radius: 4px;
}

footer > h2:first-child {
    margin-top: 0;
}

footer h3 {
    margin: 24px auto 10px;
    font-family: var(--tf-font-display);
    font-size: 1.15em;
    font-weight: 600;
    line-height: 1.4;
    color: #0f172a;
}

footer h4 {
    float: none;
    margin: 18px auto 8px;
    padding: 0;
    font-size: 0.95em;
    font-weight: 600;
    color: #312e81;
    letter-spacing: 0.5px;
}

footer p {
    margin: 0 auto 16px;
    color: #475569;
    text-align: left;
}

footer strong,
footer b {
    font-weight: 600;
    color: #0f172a;
}

footer a {
    color: #4f46e5;
    font-weight: 500;
    transition: color 0.2s ease, border-color 0.2s ease;
}

footer a:hover {
    color: #3730a3;
    border-bottom-color: #3730a3;
}

footer ul,
footer ol {
    margin: 0 auto 18px;
    padding-left: 22px;
    text-align: left;
}

footer ul {
    list-style: none;
    padding-left: 0;
}

footer ul li {
    position: relative;
    padding-left: 22px;
}

footer ul li::before {
    content: "";
    position: absolute;
    top: 0.72em;
    left: 4px;
    width: 7px;
    height: 7px;
    background: #0d9488;
    border-radius: 50%;
}

footer li {
    margin-bottom: 8px;
    color: #475569;
}

footer ol li::marker {
    font-weight: 600;
    color: #4f46e5;
}

footer blockquote {
    margin: 20px auto;
    padding: 14px 18px;
    font-style: italic;
    color: #334155;
    background: #fff;
    border-left: 4px solid #0d9488;
    border-radius: 0 10px 10px 0;
}

footer table {
    width: 100%;
    margin: 20px auto;
    font-size: 15px;
    background: #fff;
    border-collapse: collapse;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgb(15 23 42 / 8%);
}

footer th,
footer td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid #e2e8f0;
}

footer th {
    font-weight: 600;
    color: #fff;
    background: #4f46e5;
}

footer tr:last-child td {
    border-bottom: none;
}

footer code {
    padding: 2px 6px;
    font-size: 0.9em;
    color: #312e81;
    background: #e0e7ff;
    border-radius: 4px;
}

footer hr {
    height: 1px;
    margin: 28px auto;
    background: #e2e8f0;
    border: none;
}

footer img {
    display: block;
    max-width: 100% !important;
    height: auto;
    margin: 20px auto;
    border-radius: 10px;
    box-shadow: 0 4px 14px rgb(15 23 42 / 10%);
}

@media only screen and (min-width: 601px) {
    h1 {
        font-size: 2em;
    }

    .site-title a {
        font-size: inherit;
    }

    .site-title img {
        width: 330px;
        padding-top: 5px;
    }

    .site-info {
        padding: 0;
    }

    .menusection {
        width: 35%;
    }

    .menusection h2 a {
        font-size: 18px;
    }

    .settings input {
        width: 200px;
    }

    span.sharetext {
        font-size: 15px;
    }

    .share_button {
        width: auto;
        margin-top: 0;
    }

    .share_button span {
        float: right;
    }

    .share-link {
        padding: 0;
        font-size: inherit;
    }

    .resp-sharing-button__link {
        float: left;
        margin: 2px;
    }

    p.copied {
        width: auto;
    }

    main,
    .conversordeletramain,
    .conversordeletralist,
    .conversordeletrarecentlist {
        padding: 0;
    }

    #thenitesharya-text {
        font-size: 22px;
    }

    input#creepify_maxHeight,
    input#creepify_randomization {
        width: auto;
    }

    .conversordeletralist .conversordeletra,
    .conversordeletrarecentlist .conversordeletra {
        width: calc(50% - 10px);
        margin: 0 5px 10px;
    }

    .conversordeletralist .conversordeletra.zalgo,
    .conversordeletrarecentlist .conversordeletra.zalgo {
        width: calc(100% - 10px);
    }

    #flourishList .conversordeletra {
        width: 100%;
        margin: 0 0 10px;
    }

    #random-cloud {
        height: 120px;
    }

    #scroll {
        padding: 9px 11px;
    }

    .randomgen {
        padding: 0;
    }

    footer {
        padding: 48px 24px 60px;
        font-size: 17px;
    }

    footer h2 {
        font-size: 28px;
    }

    footer h3 {
        font-size: 21px;
    }

    footer img {
        max-width: 860px !important;
    }
}

@media only screen and (min-width: 971px) {
    .container {
        max-width: 970px;
    }

    .menusection {
        width: 23%;
    }

    .settings {
        position: absolute;
        top: -37px;
    }

    .separator {
        display: block;
    }

    nav a {
        font-size: 14px;
    }

    .leftsection {
        width: 75%;
    }

    .rightside {
        width: 100%;
        margin-left: 0;
    }

    .insta-profile {
        margin: 20px 16px 15px;
    }
}