:root {
    --color1: #44195E;
    --color2: #FAEE1C;
    --color3: #FC6601;
    --color4: #071A52;
    --contrast: #222;
}

* {
    box-sizing: border-box;
    margin: 0;
    font-family: monospace;
    scrollbar-width: none;
    font-size: 62.5%;
    color: var(--color4);
}

#navbar {
    width: 100%;
    height: 50px;
    max-height: 50px;
    background-color: #e2e2e2;
}

.list {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
    width: 100%;
}

ul {
    list-style: none;
}

li a {
    display: block;
    font-size: 2rem;
    text-decoration: none;
    font-weight: bolder;
    padding: 1.8rem 2rem;
}

body,
footer {
    background-color: #fafafa;
}

section {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}


.page-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    margin-top: 10rem;
    margin-bottom: 21rem;
    z-index: 1;
}

#about {
    font-size: 3rem;
    padding-left: 15px;
    padding-bottom: 15px;
    margin-bottom: 4rem;
}

#about h2 {
    font-size: 4rem;
}

#facts {
    font-size: 4rem;
    padding-left: 15px;
    margin-bottom: 2rem;
}

.facts {
    font-size: 5rem;
}

.quest {
    list-style: circle;
}

.answ {
    font-size: 1.8rem;
    list-style: disc;
}

.footer {
    text-align: center;
    font-size: 3rem;
}

#quote p {
    font-size: 2rem;
    font-style: italic;
}

#quote q {
    font-size: 2rem;
}