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: column;
    align-items: center;
    justify-content: center;
}

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

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

/* 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);
}

.login {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    flex-direction: column;
    max-width: 600px;
    background-color: rgba(62, 62, 61, 0.7);
    padding: 20px;
    border-radius: 8px;
}

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

.username {
    border-radius: 8px;
}

