html {
    scroll-behavior: smooth;
}

h1, .H1Link {
    font-family: 'Nunito', sans-serif;
    text-transform: Uppercase;
    color: black;
    font-size: 4em;
}

h2 {
    font-family: 'Nunito', sans-serif;
    text-transform: Uppercase;
    font-size: 2.5em;
}

h3 {
    font-family: 'Nunito', sans-serif;
    text-transform: Uppercase;
    font-size: 2em;
}

p, li {
    font-family: 'Nunito', sans-serif;
    /* text-transform: Uppercase; */
    color: black;
    font-size: 1.5em;
}


label {
    font-size: 2em;
    font-family: 'Nunito', sans-serif;
    text-transform: Uppercase;
    color: black;
    margin-bottom: 1em;
}

input, button {
    font-size: 2em;
    font-family: 'Nunito', sans-serif;
    /*text-transform: Uppercase;*/
    color: black;
    border: 2px solid black;
    margin-bottom: 1em;
}

#menu{
    margin:-1em;
    padding: 1em;
    background: #dcdde1;
    overflow: hidden;
    width: 100%;
    max-height: 10em;
    top: 0;
    left: 0;
    transition: max-height 2s;
}

#menu:hover, #menu:active{
    width: 100%;
    max-height: 5000px;
    transition: max-height 2s;
}

.MenuItem{
    font-family: 'Nunito', sans-serif;
    text-transform: Uppercase;
    font-size: 2.5em;
}

a{
    text-decoration: none;
}

.menuItem a{
    color: black;
}

.upButton{
    position: fixed;
    left:85%;
    top:90%;
    background-color: #00a8ff;
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 4em;
    line-height: 100px;
    width: 100px;
}

/* stole V */

table {
    width: 750px;
    border-collapse: collapse;
    margin: 50px auto;
}

/* Zebra striping */
tr:nth-of-type(odd) {
    background: #eee;
}

th {
    background: #3498db;
    color: white;
    font-weight: bold;
}

td, th {
    padding: 10px;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 18px;
}
