:root {
    --text: rgba( 64, 64, 64, 1 );
    --highlight: rgb(22, 79, 185);

    --warning:  rgba( 237, 125, 49, .5 );
    --alert: tomato;

    --theme:rgb(100, 149, 237);
    --button:rgb(100, 149, 237);
    
    --prim: rgba( 64, 64, 64, 0.5 );
    --sec: rgba( 64, 64, 64, 1 );
    --tert: rgba( 64, 64, 64, 1 );
    --quart: whitesmoke;

    --grey: rgba( 150, 150, 150, .5 );

    --background:  white;

    --width: 1000px;
    --padding: 5%;
}



body,html {
    background-color: var(--background);
    width: 100%;
    height: 100%;

    margin: 0;
    padding: 0;
}

* {
    font-family: Helvetica, Arial, sans-serif;
    font-weight: 100;
    font-size: 12px;
    color: var(--text);
}

h1 {
    font-weight: 500px;
    font-size: 8vmin;
    color: var(--highlight);
}

h2 {
    color: inherit;
    margin: 0;
    /* margin-bottom: var(--padding); */
    font-weight: 500;
    font-size: 24px;
}

h3 {
    color: var(--tert);
    font-weight: 300;
    font-size: 18px;
    line-height: 1.5em;
}

ul, li {
    list-style: none;
    margin: 0;
    padding: 0;

}

a {
    text-decoration: none;
}

table {
    border-collapse: collapse;
    width: 100%;
    overflow-x: scroll;
}

form {
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 20px;
    padding: 20px;
}

input {
    background-color: transparent;
    width: 96%;
    padding: 1%;

    font-size: inherit;
    color: inherit;
    font-weight: inherit;
    border: 2px solid var(--theme);
    border-radius: 5px;
    outline: none;

    z-index: 0;
}

input:disabled {
    color: whitesmoke;
}



::placeholder {
    color: whitesmoke;
    /* opacity: 0.5; */
    z-index: -2;
    /* font-style: italic; */
}


svg {
    height: 30px;
    width: auto;
    
    fill: inherit;
    stroke: inherit;
    color: inherit;

}

i.material-icons {
    font-size: 25px;
    align-self: center;
    justify-self: center;
    text-align: center;
    vertical-align: center;
}

i, span, a, div, label, p {
    color: inherit;
    font-weight: inherit;
    font-size: inherit;
}