@import url('https://fonts.googleapis.com/css2?family=Rubik&display=swap');
input[type=text], [type=number], [type=month]{
    width: 100%;
    padding: 12px;
    margin: 10px 0px;
    display: inline-block;
    border-radius: 4px;
    border: 1px solid salmon;
    box-sizing: border-box;
    font-size: 16px;
}
h1{
    margin-left: 40%;

}
table{
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 40%;
}
td{
    border: 2pt solid #190f73;
}
html{
    background-color: #F0FFFF;
    width: 100%;
    height: 100%;
}
nav{
    margin: 1%;
    text-align: center;
}

nav ul li {
    display: inline;
    margin: 10px;
    text-align: center;
    background-color: #F0F8FF;

}
nav a{
    font-variant: small-caps;
    letter-spacing: 0.1cm;
    text-decoration: none;
    font-family: 'Rubik', sans-serif;
    padding: 10px;
    border-right: 2pt solid #cc7a1a;
    border-left: 2pt solid #cc7a1a;
    transition-duration: 0.5s;
}
nav ul a:hover{
    border-right: 2pt solid #F0FFFF;
    border-left: 2pt solid #F0FFFF;
    border-bottom: 2pt solid #cc7a1a;
}
a:active, a:visited, a:link{
    color:#331f66;
    font-size:12pt;
    font-family: 'Rubik', sans-serif;
}
div{
    font-size: 20px;
}
table{
    margin-top: 2%;
}
input[type=radio]{
    box-shadow: 2px 2px #190f73;

}
body{
    color: #190f73;
    background-color: #F0FFFF;
}
html{
    background-color: #F0FFFF;
    width: 100%;
    height: 100%;
}
h1{
    font-family: 'Courier New', monospace;
}
label{
    font-size: 18px;
    font-family: 'Rubik', sans-serif;
}

input[type=checkbox] + label {
    display: block;
    margin: 0.2em;
    cursor: pointer;
    padding: 0.2em;
}

input[type=checkbox] {
    display: none;
}

input[type=checkbox] + label:before {
    content: "\2714";
    border: 0.1em solid #000;
    border-radius: 0.2em;
    display: inline-block;
    width: 1em;
    height: 1em;
    padding-left: 0.2em;
    padding-bottom: 0.3em;
    margin-right: 0.2em;
    vertical-align: bottom;
    color: transparent;
    transition: .2s;
}

input[type=checkbox] + label:active:before {
    transform: scale(0);
}

input[type=checkbox]:checked + label:before {
    background-color: MediumSeaGreen;
    border-color: MediumSeaGreen;
    color: #fff;
}
input[type=button]{
    display: inline-block;
    background-color: #7b38d8;
    border-radius: 10px;
    border: 4px double #cccccc;
    color: #eeeeee;
    text-align: center;
    font-size: 16px;
    padding: 20px;
    width: 100px;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    cursor: pointer;
    margin: 5px;
}

input[type=range] {
    height: 38px;
    -webkit-appearance: none;
    margin: 10px 0;
    width: 40%;
}
input[type=range]:focus {
    outline: none;
}
input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000;
    background: #3071A9;
    border-radius: 5px;
    border: 1px solid #000000;
}
input[type=range]::-webkit-slider-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 30px;
    width: 15px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -11px;
}
input[type=range]:focus::-webkit-slider-runnable-track {
    background: #3071A9;
}
input[type=range]::-moz-range-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    box-shadow: 1px 1px 1px #000000;
    background: #3071A9;
    border-radius: 5px;
    border: 1px solid #000000;
}
input[type=range]::-moz-range-thumb {
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 30px;
    width: 15px;
    border-radius: 5px;
    background: #FFFFFF;
    cursor: pointer;
}
input[type=range]::-ms-track {
    width: 100%;
    height: 10px;
    cursor: pointer;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
input[type=range]::-ms-fill-lower {
    background: #3071A9;
    border: 1px solid #000000;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-fill-upper {
    background: #3071A9;
    border: 1px solid #000000;
    border-radius: 10px;
    box-shadow: 1px 1px 1px #000000;
}
input[type=range]::-ms-thumb {
    margin-top: 1px;
    box-shadow: 1px 1px 1px #000000;
    border: 1px solid #000000;
    height: 30px;
    width: 15px;
    border-radius: 5px;
    cursor: pointer;
}
input[type=range]:focus::-ms-fill-lower {
    background: #3071A9;
}
input[type=range]:focus::-ms-fill-upper {
    background: #3071A9;
}
input[type=submit], [type=reset]  {
    background-color: #62529c;
    border: none;
    border-radius: 10px;
    color: #fff;
    padding: 15px 30px;
    text-decoration: none;
    margin: 4px 2px;
    cursor: pointer;
}
