@font-face {
    font-family: "Fira Code";
    src: url("Fira_Code/FiraCode-VariableFont_wght.ttf") format("truetype");
}

html {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    font-size: 10px;
}

@media (min-width:600px) {
    html {
        font-size: 15px;
    }

    @media (min-width:1200px) {
        html {
            font-size: 20px;
        }
    }
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100%;
    font-family: "Fira Code";
    font-weight: 300;
    color: rgba(255, 255, 255, 60%);
    background: #121212;
    cursor: default;
    position: absolute;
}

input,
button {
    font-family: inherit;
    font-size: inherit;
    background-color: #1e1e1e;
    border: 1px solid #121212;
    border-radius: 5px;
    box-sizing: border-box;
    color: inherit;
    filter: none;
}

input[type=text],
input[type=password] {
    box-shadow: inset 0 0 0.2em rgba(0, 0, 0, 0.2);
}

input[type=password] {
    font-family: "Arial";
    line-height: 1.25em;
}

input[disabled=true] {
    background: #000;
    color: #333;
}

input[type=text].pop {
    color: inherit;
}

input::placeholder,
input[type=password]::placeholder {
    font-family: "Fira Code";
}

h1 {
    font-size: 200%;
    line-height: 1em;
    margin-top: 0;
    text-align: center;
    font-weight: 500;
}

a:link,
a:visited,
input[type=submit],
button {
    color: cadetblue;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.1s;
    text-decoration: none;
    font-weight: 300;
}

a:hover,
input[type=submit]:hover,
button:hover {
    position: relative;
    color: cadetblue;
}

*:focus {
    outline: #000;
}