/* Universal Font */
* {
    font-family: "Fira Sans", "Helvetica", "Noto Sans", "Open Sans";
    color: #ffffff;
}

/* Background Colour */
body {
    background-color: #181a1b;
/*     min-height: 100vh; */
}

/* Footer */
footer {
    text-align: center;
    padding: 3px;
    background-color: #555;
    color: white;
}

/* Responsive Image Sizing */
img {
    max-width: 100%;
    height: auto;
}

/* Style the navigation bar */
.navbar {
    width: 100%;
    background-color: #555;
    overflow: auto;
}

/* Navbar links */
.navbar a {
    float: left;
    text-align: center;
    padding: 12px;
    color: white;
    text-decoration: none;
    font-size: 17px;
}

/* Navbar links on mouse-over */
.navbar a:hover {
    background-color: #000;
}

/* Current/active navbar link */
.active {
    background-color: #04AA6D;
}

/* Add responsiveness - will automatically display the navbar vertically instead of horizontally on screens less than 500 pixels */
@media screen and (max-width: 500px) {
    .navbar a {
        float: none;
        display: block;
    }
}
