/* Navigator */
nav {
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    padding: 0 5px;
}

nav a {
    display: flex;
    padding: 0 7px;
    text-decoration: none; /* Forgot about this initially... */
    color: white;
}

/* Body */
body {
  background-image: url("/static/img/bsbg1.jpg");
  background-repeat: repeat;
  background-size: 50%;
}

/* DivClass body (not to be confused with the above!) */
.body {
    background-color: #FFFFFF;
    padding-left: 5px;
    max-width: 1800px;
    text-align: center;
    margin: 0 auto;
}