::-webkit-scrollbar {
    display: none;
}

nav {
    display: flex;
    justify-content: space-evenly;
    background-color: black;
    padding: 20px;
}

nav > svg {
    width: 40px;
    height: 40px;
}

nav > a {
    font-size: 32px;
    color: white;
    text-decoration: none;
    font-family: "Bevellier", sans-serif;
    font-weight: 600;
    margin-top: 0px;
}

main {
    padding: 40px;
    height: calc(100vh - 52px - 80px - 40px); 
}

main > h2 {
    font-size: 36px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
}

main > h4 {
    font-size: 28px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    padding: 12px;
}

main > h5 {
    font-size: 20px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    padding: 4px;
}

main > p {
    font-size: 24px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    padding: 20px;
}

.quizTitle {
    font-size: 24px;
    font-family: "Bevellier", sans-serif;
    font-weight: 300;
    padding: 4px;
}

main > a {    
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: max-content;

    padding: 8px;
    border: 4px solid #AF03FF;
    background-color: #AF03FF;
    border-radius: 8px;

    font-size: 24px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: #FFD503;
}

.link {
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    text-decoration: none;
    color: black;
}

section {
    margin-left: 20px;
}

section > a {
    margin: 8px;
    text-decoration: none;
}

a > h3 {
    padding-bottom: 4px;
    font-size: 28px;
    font-family: "Bevellier", sans-serif;
    font-weight: 500;
    color: #AF03FF;
}

a > p {
    font-size: 20px;
    font-family: "Bevellier", sans-serif;
    font-weight: 400;
    color: #FFD503;
}

.ol{
    font-size: 20px;
    list-style-type: lower-alpha;
    font-family: "Bevellier", sans-serif;
    font-weight: 400;
    
    margin-left: 60px;
    margin-bottom: 60px
}

.ul{
    font-size: 20px;
    list-style-type: circle;
    font-family: "Bevellier", sans-serif;
    font-weight: 400;
    padding-left: 20px;
}

.ol > li, .ul > li{
    padding: 4px;
}

footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 20px;

    display: flex;
    justify-content: space-evenly;
    align-items: center;
    background-color: black;
    margin: 0px;
    padding: 20px;
}

footer > h4 {
    font-size: 16px;
    color: white;
    text-decoration: none;
    font-family: "Bevellier", sans-serif;
    font-weight: 300;
}