/* Footer Styling 

- flex container 
- spans across the webpage width
- centered text
- contrasting background color */
.site-footer {
    display: flex;
    flex-direction: column;
    height: 10vh;
    width: 100vw; 
    margin: 0; 
    padding:0% 0;
    justify-content: center;
    text-align: center; 
    background-color: #000000; 
}

/* Text in the footer */
.footer-text {
    margin: 0; 
    color: #ffffff; 
    font-size: .6rem;
}

