.genLink {
    text-decoration: none;
}

.genLink a:hover {

}

body {
    margin: 0;
    border: 3px solid blue;
}

/* The Sticky Menu */
.navbar {
    position: -webkit-sticky; /* For Safari */
    position: sticky;
    top: 0;
    background-color: blue;
    padding: 10px 0 10px 0px;
    text-align: center;
    z-index: 1000; /* Ensures it stays above other content */
}

.navbar a {
    padding: 2px 2px 2px 2px;
    margin: 2px 2px 2px 2px;
    text-decoration: none;
    border-radius: 5px;
    border: 2px solid white;
    font-weight:bold;
    color:blue;
    background-color:white;
}

.navbar a:hover {
    border: 2px solid black;
}

.titleSpan {
    float:left;
    margin-left: 10px;
    font-size:30px;
    font-weight:bold;
    background-color: #00008B;
    border-radius: 10px;
    padding: 5px 5px 5px 5px;
    color: white;
}
.main {
  background-image: url("bg.jpg");
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 99% 99%;
}
