body {
    display: flex;
    flex-direction: column;
    margin: 0;
    height: 100vh;
    font-family: 'Varela Round';font-size: 22px;
    color: rgb(203, 200, 196);
    background-color: black;

    /*Adding a background photo*/
    background-image: url('LeafBackground.jpg'); 
    background-size: cover;
    background-position: center; 
    background-repeat: no-repeat;
}

main {
    flex: 1;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-evenly;
    align-content: space-evenly;
    flex-wrap: wrap;
    padding: 40px;
    gap: 1em;
}

footer {
    flex: 0 30px;
    display: flex;
    justify-content: center;
    align-items: center;
}

h1 {
    font-size: 2em;
    color:rgb(70, 165, 33);
}

table caption {
    caption-side: top;
    color: rgb(70, 165, 33);
    font-size: 1.2em;
}

table {
    display:inline-table;
    flex-grow: 1;
    padding: 6px;
    gap: 1em;
}

/* Class Specific Style */
.navbar {
    border-bottom: 2px solid rgb(00,00, 00)
}

.nav-link {
    color: rgb(203, 200, 196);;
}

.nav-link active {
    color:rgb(203, 200, 196);;
}

.navbar-brand {
    font-size: 1.5em;
    color:rgb(65, 151, 30);
}

.text-box {
    background-color: rgba(62, 62, 61, 0.7);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-grow: 1;
    padding: 15px;
}

.navbar-toggler {
    border: 3px solid #000000;;
}

.personalHpersonalHighScores {
    display: flex;
    align-items: center;
    justify-content: center;
}