:root {
    --global-bg-color: #000;
    --global-text-color: #32cd32;
    --global-accent-color: #ff0040;
}

* {
    -webkit-tap-highlight-color: rgba(255, 255, 255, 0) !important;
    -webkit-focus-ring-color: rgba(255, 255, 255, 0) !important;
    outline: none !important;
}

body {
    font-family: "Hind Siliguri", serif;
    background-color: var(--global-bg-color);
    color: var(--global-text-color);
    padding: 0;
    margin: 0;
    position: relative
}

a:active,
a:focus {
    outline: 0;
    border: none;
    -moz-outline-style: none
}

a:focus {
    outline: solid 0 !important
}

:focus {
    outline: 0 !important
}

::-moz-selection {
    background-color: var(--global-accent-color);
    color: #fff
}

::selection {
    background-color: var(--global-accent-color);
    color: #fff
}

html {
    scrollbar-width: thin;
    scrollbar-color: var(--global-accent-color) #242424;
}

header {
    display: flex;
    align-items: center;
    padding: 10px;
    background-color: #333;
    background-image: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), linear-gradient(45deg, rgba(0, 0, 0, .6), rgba(255, 0, 0, .6)), url(../Image/anime.jpg);
    background-size: cover, cover, cover;
    background-position: center, center, 50px 410px;
    color: #fff;
    position: sticky;
    top: -1px;
    z-index: 10;
    width: 100%;
    box-sizing: border-box
}

.logo-t {
    font-family: "Satisfy", cursive;
    font-weight: 700;
    font-size: 1.5em;
    margin-right: auto
}

.s-text {
    font-weight: 700;
    font-size: 1.5em;
    margin: 5 0 30px 0
}

.s-item {
    margin-top: 20px
}

.fa-globe,
.fa-keyboard {
    margin-right: 10px;
}

.form-group,
.custom-text-group {
    font-size: 15px;
}

.menu-toggle {
    background-color: #33333300;
    border: none;
    padding: 5px;
    cursor: pointer;
    color: #fff;
    font-size: 20px
}

.form-field {
    background-color: #242424;
    color: #fff;
    padding: 8px;
    width: 100%;
    margin: 10px 0;
    font-size: 13px;
    border: 1px solid #535353;
    border-radius: 2px;
    transition: border-color .2s;
    cursor: pointer
}

.form-field:focus {
    outline: 0;
    border-color: #fff
}

.slider-label, .slider-value {
    font-size: 15px;
}

.slider-value{
    color: var(--global-accent-color);
    font-weight: bold;
}
.custom-slider{
    width: 100%;
}

.custom-text-group {
    display: none
}

#custom-text {
    background: #242424;
    width: 100%;
    padding: 12px;
    color: #fff;
    font-size: 13px;
    border: 1px solid #535353;
    border-radius: 2px;
    transition: border-color .2s ease-in-out;
    margin: 10px 0;
    box-sizing: border-box;
    resize: vertical
}

#custom-text:focus {
    outline: 0;
    border: 1px solid #fff
}

#description {
    display: block;
    position: fixed;
    min-width: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 20px;
    background-color: #000;
    color: #fff;
    border-radius: 10px;
    z-index: 10
}

.heading {
    font-size: 1.5em;
    font-weight: 700;
    color: #ff0040;
    margin-bottom: -10px
}

.terminal {
    padding: 10px;
    border-radius: 5px;
    position: relative
}

.output {
    white-space: pre-wrap;
    margin-bottom: 30px;
    display: none
}

.input-line {
    margin-top: 50px
}

.prompt {
    color: #ffff00;
    margin-right: 5px;
}

.off-canvas-menu {
    position: fixed;
    top: 0;
    right: -350px;
    width: 300px;
    height: 100%;
    background-color: #333;
    color: #fff;
    transition: right .3s ease;
    padding: 20px;
    z-index: 100
}

.off-canvas-menu.open {
    right: 0
}

.close-menu {
    background-color: #333;
    border: none;
    color: #fff;
    padding: 10px;
    cursor: pointer;
    float: right;
    font-size: 20px
}

#input {
    background-color: var(--global-bg-color);
    border: none;
    color: transparent;
    padding: 5px;
    font-family: monospace;
    font-size: 16px
}

#input:focus {
    outline: 0
}

.button-ka {
    width: 100%;
    padding: 10px;
    font-size: 13px;
    cursor: pointer;
    border: none;
    border-radius: 2px;
    background-color: var(--global-accent-color);
    color: #fff;
    margin-top: 20px;
}

.button-ka:hover {
    background-color: #242424;
    color: #fff
}

#wpm-display {
    position: absolute;
    top: 5px;
    right: 5px;
    color: #ff0;
    font-size: 20px
}

h2 {
    font-size: 30px
}

.typed-text {
    font-size: 1em
}

#result-container {
    min-width: 300px;
    display: none;
    text-align: center;
    margin: 0;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #000;
    z-index: 10
}

#description-menu-toggle,
#do-again-button,
#reload-button {
    padding: 8px 20px;
    border: none;
    border-radius: 1px;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    white-space: nowrap;
    min-width: 120px;
    margin-right: 5px
}

#do-again-button {
    background-color: #026b02
}

#description-menu-toggle,
#reload-button {
    background-color: var(--global-accent-color)
}

#do-again-button:hover {
    background-color: #07a007
}

#description-menu-toggle:hover,
#reload-button:hover {
    background-color: #c30c3a
}

.footer {
    background-color: var(--global-bg-color);
    padding: 2px 0;
    border-top: 1px solid #535353;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    font-size: 13px;
}

.footer a {
    color: #fff;
    text-decoration: none;
    font-size: 13px;
}

.footer a:hover {
    color: var(--global-accent-color)
}

@media (max-width:768px) {
    .off-canvas-menu {
        right: -110%;
        width: 92%
    }

    .off-canvas-menu.open {
        right: 0
    }

    .close-menu {
        margin-right: -10px
    }

    header {
        background-position: center, center, 0 295px
    }

    #do-again-button,
    #reload-button {
        width: 100%;
        margin-bottom: 10px;
        padding: 8px 16px;
        font-size: 14px;
        min-width: 100px
    }
}