@font-face {
    font-family: "Karla";
    src: url('./uploads/fonts/Karla-VariableFont_wght.ttf') format('truetype'),
        url('./uploads/fonts/Karla-Italic-VariableFont_wght.ttf') format('truetype');
}  

:root {
    --main-color: #554868;
    --main-font: 'Karla', sans-serif;
    --main-font-size: 24px;
    --color-black: #1e1928;
    --dimension: 60px;
}

* {
    box-sizing: border-box;
    font-family: var(--main-font);
    font-size: var(--main-font-size);
    text-decoration: none;
    color: var(--color-black);
    padding: 0;
    margin: 0;
    position: relative;
    outline: none;
    border: none;
}

html, body {
    background-color: var(--main-color);
}

body {
    padding: 25px 15px;
    height: 100%;
    /*overflow: hidden;*/
    display: flex;
    align-items: center;
    justify-content: center;
}

#app, #app1, #app2 {
    height: min(100vh, 650px);
    justify-content: space-between;
    align-items: center;
}

header {
    padding-top: 2.5vh;
}

h1 {
    color: #fff;
    font-size: 2rem;
}

#delete {
    display: grid;
    place-items: center;
    width: 100%;
    height: 35px;
    background-color: #f00;
    border-radius: 100vh;

}
#delete:hover {
    background-color: rgb(226, 0, 0);
}
#delete svg {
    height: 20px;
    fill: #fff;
}


.layout-column, .layout-row, .little-layout-row, .little-layout-column  {
    display: flex;
}

.layout-column, .layout-row {
    width: min(375px, 100%);
    gap: 20px;
}

.layout-column, .little-layout-column  {
    flex-direction: column;
}

.layout-row, .little-layout-row {
    flex-direction: row;
    align-items: center;
}

.little-layout-row {
    width: 100%;
    justify-content: center;
    gap: 20px;
}


.container, .btn-long, .btn-short {
    background-color: #fff;
    min-height: var(--dimension);
    border-radius: 10px;
    overflow: hidden;
}

.container, .btn-long {
    display: flex;
}

.container {
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 5px 0 0 var(--color-black);
    padding: 15px 20px;
}

.container > * {
    font-size: 0.75rem;
    font-weight: bold;
}

.btn-long, .btn-short {
    box-shadow: 0 10px 0 0 var(--color-black);
    transition: all 150ms ease-in-out;
}
.btn-long:hover, .btn-short:hover {
    background-color: #7b57ad;
}
.btn-long:active, .btn-short:active, .disable {
    background-color: #7b57ad;
    color: #fff;
    transform: translateY(5px);
    box-shadow: 0 5px 0 0 var(--color-black);
}

.btn-long:hover *, .btn-short:hover *, .btn-long:active *, .btn-short:active *, .disable * {
    color: #fff;
    fill: #fff;
}

.btn-long svg, .btn-short svg {
    height: 30px;
    width: 100%;
    fill: var(--color-black);
}


.btn-long {
    flex-direction: row;
    align-items: center;
    justify-content: left;
    gap: 15px;
    padding: 0px 20px;
}

.btn-long span {
    display: grid;
    place-items: center;
    width: 50px;
}

.btn-short {
    width: var(--dimension);
    display: grid;
    place-items: center;
}

.ball {
    width: 30px;
    height: 30px;
}

.balls {
    align-items: center;
    gap: 5px;
}

.balls span {
    display: block;
    width: 20px;
    height: 5px;
    color: transparent;
    background-color: transparent;
    border-radius: 100vh;
    margin: 0 auto;
}

.green {
    background-color: #0f0 !important;
}

.orange {
    background-color: #FF9B3F !important;
}


@media (max-width: 450px) {
    :root {
        --main-font-size: 20px;
    }
}

@media (max-height: 850px) {
    /* body {
        align-items: start;
    }     */

    #app {
        height: 80vh;
    }
}