html {
    margin: 0;
    padding: 0;
}

body {
    color: #333;
    margin: 0;
    padding: 0;
    width: 100%;
    box-sizing: border-box;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    background-image: -webkit-linear-gradient( top left, #bb14dc 0%, #2e75b6 33%, #abc0e4 67%);
    background-size: 100%;
    background-attachment: scroll;
    min-height: 100vh;
}


/*
body:before {
    content: '';
    position: fixed;
    top: 0;
    bottom: 0;
    width: 100%;
    z-index: -1;
    background-image: -webkit-linear-gradient( top left, #bb14dc 0%, #2e75b6 33%, #abc0e4 67%);
    background-size: 100%;
}*/

a {
    color: rgb(0, 100, 200);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

a:visited {
    color: rgb(0, 80, 160);
}

label {
    display: block;
}

input,
button,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    -webkit-padding: 0.4em 0;
    padding: 0.4em;
    margin: 0 0 0.5em 0;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 2px;
}

input:disabled {
    color: #ccc;
}

.button {
    background-color: black;
    padding: 12px 15px;
    border-radius: 5px;
    color: #fff;
    border: none;
}

.button:disabled {
    color: #999;
    background-color: rgba(0, 0, 0, 0.5);
}

.button:not(:disabled):active {
    background-color: rgba(0, 0, 0, 0.5);
}

.button:focus {
    border-color: #666;
}

.button:not(:disabled):hover {
    cursor: pointer;
    background-color: rgba(0, 0, 0, 0.65);
}