:root {
    --navbar-main: transparent;
    --navbar-active: white;
    --highlight-text: #dad1ff;
    --bg-1: #150050;
    --bg-2: #3F0071;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    color: white;

    
}
*::--webkit-scrollbar {
    display: none;
}

html, body {
    overflow-x: scroll;
    &::-webkit-scrollbar {
        display: none;
    }
    scrollbar-width: none;
    /*IE10+*/
    -ms-overflow-style: -ms-autohiding-scrollbar;
    
}

body {
    min-height: 100vh;
    background: linear-gradient(20deg, #000000, var(--bg-1), var(--bg-2));
}

footer {
    margin-top: auto;
    width: 100%;
    font-size: 10pt;
    color: white;
    padding: 8rem 0 5rem;
    text-align: center;
}
footer a {
    color: white;
    text-decoration: none;
}
footer a:hover {
    text-decoration: underline;
}
.html-container {
    min-height: 100vh;
    min-height: 100svh;
    display: flex;
    flex-direction: column;
}
.subtle {
    opacity: 50%;
}
.error {
    color: red;
    font-weight: bold;
}
.background {
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    padding: 5em;
    border-radius: 30px;
    margin: 1em auto;
}
.full {
    width: 80%;
}
.divide {
    margin-bottom: 2em;
}
section {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    width: 20em;
}
.grid {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    flex-basis: 30%;
}
.grid-content {
    padding: 1em;
    border: 2px solid var(--highlight-text);
    border-radius: 1em;
    margin: 1em;
    flex: 1;
}
.pad {
    margin: 1em;
}
button {
    color: white;
    font-size: 12pt;
    font-weight: bold;
    padding: 1em 3em;
    margin-top: 2em;
    background-color: var(--bg-1);
    border: 2px solid white;
    border-radius: 20px;
    transition: all 0.3s;
}
button:hover {
    background-color: white;
    color: var(--bg-1);
}
button.small {
    padding: 0.5em;
    margin-top: 0;
}
button.danger {
    color: red;
    border-color: red;
}
label {
    color: white;
}
input {
    background-color: transparent;
    outline: black;
    margin: 10px;
    font-size: 12pt;
    border-radius: 20px;
    border: 2px solid white;
    padding: 0 10px;
    color: white;
    width: 200px;
}
input.short {
    width: 70px;
}

@media screen and (max-width: 1000px) {
    .full {
        width: 95%;
    }
    .grid {
        flex-direction: column;
    }
    .grid-content {
        margin: 1em 0;
    }
    .background {
        padding: 2em;
    }
}