/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
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;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
    display: block;
}
body {
    line-height: 1;
}
ol, ul {
    list-style: none;
}
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}
table {
    border-collapse: collapse;
    border-spacing: 0;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background-color: #333; 
    color: white;
    line-height: 60px;
    font-size: xx-large;
    display: flex;
    align-items: center;
  }

h1 {
    flex-grow: 1; 
    text-align: center;
    justify-content: space-between;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50px; 
    background-color: #333;
    color: white;
    text-align: center;
    line-height: 50px;
    z-index: 1000;
    font-size: large;
}
  
body {
    padding-top: 70px; 
    padding-bottom: 60px;
}

nav.nav-buttons, landing-button {
    position: absolute;
    right: 20px;
    display: flex;
    gap: 10px;
}

nav.nav-buttons a button, landing-button {
    padding: 8px 16px;
    font-size: 16px;
}

html::-webkit-scrollbar {
    display: none;
}

body {
    font-family: Arial, sans-serif;
    padding-top: 70px; 
    padding-bottom: 60px;
}

form, .landing {
    background: white;
    max-width: 500px;
    margin: 20px auto; padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 0px 10px gray;
}

input, select {
    padding: 10px  ;
    margin: 10px 0;
    border-radius: 4px;
    border: 1px solid #ccc;
}

.error, .warning {
    color: red;
    font-size: 14px;
    margin-top: 5px;
}

.success {
    color: green;
    font-size: 14px;
    margin-top: 5px;
}

.landing {
    text-align: center;
}

.landing input {
    justify-content: space-between;
}

form p {
    color: red;
    font-size: 13px;
}
  