    html, body {
        margin: 0;
        padding: 0;
        height: 100%;
    }
    body {
        background-color: darkslategray;
        overflow: scroll;
    }
    h1 {
        text-align: center;
    }

    #navbox {
        flex: 1 0 100%;
        background-repeat: no-repeat;
        background-size: 10vh;
        background-color: black;
        height: 1vw;
  

    }
    #navbox:hover {
        background-color: white;
        transition: all .3s linear;
}

    nav ul {
        position: absolute;
        line-height: 5%;
        margin-left: 5%;
        list-style-type: none;
        width: 40%;
    }
    nav ul a {
        font-size: 12pt;
        color: #EEE;
        text-decoration: none;
        border-bottom: 3px solid grey;
        padding: 16px 24px;
        margin: 25px 8px;
        display: flex;
        position: relative;
    }
    nav ul a:hover::after {
        width: 101%;
    }
    nav ul a:hover {
        color:rgb(157, 157, 221);
        transition: all .3s linear;
    }
    nav ul a::after {
        content: "";
        display: inline-block;
        width: 0%;
        height: 3px;
        background-color: rgb(157, 157, 221);
        position: absolute;
        bottom: -3px; left: 50%; transform: translateX(-50%);
        transition: all .3s linear;
    }
    p {
        text-align: center;
        font-size: 20pt;
    }

    footer {
        padding-top: 70vh;
        padding-left: 5vh;
        text-align: left;
        color: white;
    }

    #participation ul {
        margin-left: 55%;
        width: 40%;
        text-align: center;
        margin-top: -9%;
        

    }
   


 

