@charset "UTF-8";

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}

html {
    width: 90%;
    height: 100%;
    background-color: #000;
    margin: auto;
}
body {
    height: 100%;
    background-image:linear-gradient(0deg, #000, #fff 60%, #fff  );
    font-family: sans,Veranda;
    line-height: 1.8;
    color:#fff;
    text-align: center;
}

#navicon {
    display:none;
}

header > nav > ul {
    display: flex;
    background-color:#000;
}
header > nav > ul > li{
    list-style: none;
    color: #fff;
    padding: 2em;
}
header > nav > ul > li > a{
    border-radius: 15px;
    padding: 1em;
    box-shadow: 2px 2px 5px #2a9191;
    background-color: #40c148;
    color: #fff;
    text-decoration: none;
    font-size:larger;
    font-weight: bold;
}
header > nav > ul > li > a:hover{
    color: #fff;
    background-image: linear-gradient(90deg, #2a9191, #020202 60%);
    box-shadow: 5px 2px 10px #2a9191;
}
header > nav > img {
    max-width: 360px;
}

h1 {
    padding-top: .5em;
}

h1, h2 {
    color: #fff;
    font-size: xx-large;
}

h2 > a {
    color: #825577;
    text-decoration: none;
    text-shadow: 1px 1px 1px #000;
}

header > h1 > a {
    text-decoration: none;
    color: #000;
    padding-top: 1em;
}

canvas {
    background-color: transparent;
    border: none;
}

div {
    background-color: #000;
    margin: auto;
    max-width: 500px;
    text-align: left;
    border-radius: 15px;
    padding-left: 5px;
    border: solid 3px #020b31;
    box-shadow: 2px 2px 2em #0731d7;
}

div > p > b > a {
    color: #fff;
}

div#vase {
    background-color: transparent;
    position: absolute;
    top: 20%;
    z-index: 50;
    border: none;
    box-shadow: none;
}

p {
    padding-top: 1em;
    padding-bottom: 1em;
}

form {
    margin: auto;
}

footer {
    padding: 2em;
    background-color:#000;
}

footer > h5 > a {
    text-align: left;
    color:#40c1c1;
}

div > ul {
    list-style: none;
    padding-left: 10%;
    text-align: left;
}

div > ul > li {
    padding:5px;
}

div > ul > li > a {
    color: #40c148;
    text-decoration: none;
    font-size: large;
}

div > ul > li > a:hover{
    color: #fff;
    text-decoration: none;
    background-color:blue;
}

label {
    display:inline;
    min-width: 200px;
}

input {
    font-size: larger;
    text-align: left;
    display: inline;
}

input#submit:hover {
    background-color: #d2691e;
}

textarea#longtext {
    font-family: sans,Veranda;
    font-size: large;
}

fieldset {
    margin: 0;
    max-width: 400px;
    min-width: 300px;
    border-radius: 5px;
    margin: auto;
    border: none;
    box-shadow: 1px 2px 10px 2px #100966;
    background-image: linear-gradient(180deg, #002f6a 5%, #000);
}

.err {
    color: #cc0708;
}