:root {
    --font-size: 1.3rem;
    --back-color: #1b1b1b;
    --primary-color: #702459;
    --header-back: #874f5e;
    --header-text: #eee;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "VT323", monospace;
}

body {
    background-color: var(--back-color);
    color: var(--primary-color);
    height: 100vh;
    display: flex;
    justify-content: center;
}

::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: black;
}

::-webkit-scrollbar {
    width: 8px;
    background-color: #555;
}

::-webkit-scrollbar-thumb {
    border-radius: 10px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
    background-color: lime;
}

.key {
    color: purple;
}

.value {
    color: cyan;
}

.fetch-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 500px;
    width: 100%;
}

.fetch-img-container {
    display: flex;
    justify-content: flex-end;
    height: 300px;
    width: 600px;
}

.fetch-img {
    margin-right: 50px;
}

.info {
    padding-top: 50px;
    height: 100%;
    width: 50%;
}

.white {
    color: rgb(238, 238, 238);
}

.blue {
    color: #003cff;
}

a {
    text-decoration: none;
    color: #00b14a;
}

.container {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    max-width: 95vw;
    max-height: 95vh;
    overflow: hidden;
    border-radius: 6px;
    border: .5px solid rgb(47, 47, 47);
    margin: 20px;
    cursor: text;
}

.maximized {
    max-width: 100vw;
    max-height: 100vh;
    margin: 0;
}

.minimized {
    height: 45px;
}

.menu {
    display: flex;
    align-items: center;
    text-align: center;
    justify-content: space-between;
    width: 100%;
    min-height: 45px;
    height: 45px;
    background-color: black;
    padding: 0 6px;
    cursor: default;
}

.menu .button {
    display: flex;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    margin-right: 8px;
    cursor: pointer;
}

.buttons-flex {
    display: flex;
    flex-direction: row;
    flex-basis: 0;
}

@keyframes blinkanimation {
    from {
        width: 0px;
    }

    to {
        width: 200px;
    }
}

.blink {
    display: block;
    overflow: hidden;
    animation: blinkanimation 0.8s linear infinite;
    color: #3ec70b;
    margin-left: 10px;
}

@keyframes on-off {
    from {
        z-index: -1;
    }

    to {
        z-index: 1;
    }
}

.blink-dot {
    display: inline-block;
    position: relative;
    margin: auto;
    height: 12px;
    width: 12px;
    background-color: #00b14a;
    border-radius: 50%;
    animation: on-off 1s linear infinite;
}

.red {
    background-color: rgb(204, 20, 20);
}

.green {
    background-color: rgb(0, 170, 0);
}

.yellow {
    background-color: rgb(255, 255, 0);
}

div.title {
    flex: 1;
    text-align: center;
}

.menu h1 {
    font-size: 20px;
    color: white;
}

#app {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow: auto;
    padding: 8px;
    background-color: black;
}

p {
    font-size: var(--font-size);
    padding: 8px 0;
    color: #96905f;
}

.bottom-bar {
    background-color: black;
    font-size: larger;
    padding-top: 5px;
    padding-bottom: 5px;
    color: white;
}

.bottom-name {
    color: white;
}

h2 {
    font-size: var(--font-size);
    color: lime;
}

span.code {
    font-style: italic;
    color: #8e0a5b;
    margin-left: 8px;
}

span.text {
    margin-left: 16px;
    color: #00ffc6;
}

p.path {
    color: lime !important;
}

#app p {
    color: lime;
}

p.path span {
    color: lime;
}

p.path span+span {
    color: lime;
}

.success {
    color: #008c76ff;
}

.error {
    color: #ff1700;
}

p.response {
    color: #37e2d5;
}

input {
    border: none;
    background-color: unset;
    color: lime;
    width: 100%;
    font-size: var(--font-size);
}

input:focus {
    border: none;
    outline: none;
    box-shadow: none;
    background-color: unset;
}

.type {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.type2 {
    display: flex;
    align-items: center;
    padding: 8px 0;
}

.icone {
    color: lime;
    padding-right: 8px;
}

.icone.error {
    color: #ff1700;
}

@media (max-width: 500px) {
    * {
        font-size: 0.6em;
    }

    .buttons-flex {
        display: flex;
        flex-direction: row;
        flex-basis: 0;
    }

    .fetch-img-container {
        justify-content: flex-start;
    }

    .fetch-container {
        flex-direction: column;
        height: 500px;
        width: 100%;
        margin-bottom: 20px;
    }

    .info {
        width: 100%;
    }

    .menu h1 {
        font-size: small;
    }

    span {
        font-size: small;
    }

    .title {
        font-size: 5em;
    }
}

@media (max-width: 400px) {
    .menu h1 {
        display: none;
    }

    .info {
        height: 500px;
    }
}