* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    border: 0;
}

body
{
    font-family: Verdana, Geneva, Arial, sans-serif;
    color: white;
    background-color: #003;
}

.brudi
{
    font-weight: bold;
    font-size: 64pt;
}

#container {
    display: flex;
    flex-direction: column;
    align-items: center;

    height: 100vh;
    width: 100vw;
}

#navbar {
    flex: 0 0 auto;
}

.spacer {
    flex: 1 1 auto;
}

#content {
    font-size: 24pt;
    max-width: 80%;
    text-align: center;
    flex: 0 0 auto;
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

#navbar ul li {
    float: left;
}

#navbar ul li a {
    display: block;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

ul.bullet {
    text-align: left;
}

ul.plain {
    list-style-type: none;
}

table {
    margin-left: auto;
    margin-right: auto;
}

h1 {
    font-size: 36pt;
}

h2 {
    font-size: 30pt;
}

@keyframes progress {
    0% { width: 100%; }
    100% { width: 0%; }
}

#progressbar {
    position: absolute;
    width: 87.74652777777777%;
}

#progressanimation {
    height: 10px;
    position: relative;
    background-color: hotpink;
    animation-name: progress;
    animation-timing-function: linear;
    animation-duration: 75813s;
}