nav {
  float: left;
  width: 10%;
  background: #08001D;
  padding: 10px;
}
body {
  margin: 0;
  padding: 0;
  color: black;
  background:
        /* top, transparent black, faked with gradient */ 
        linear-gradient(
          rgba(0, 0, 0, 0.7), 
          rgba(0, 0, 0, 0.7)
        ),
  url("New_Romulus.png");
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: sans-serif;
}
.sidenav {

  width: 10%;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: #000;
  overflow-x: hidden;
  padding-top: 0px;
}

/* Style the sidenav links and the dropdown button */
.sidenav a, .dropdown-btn {
  padding: 6px 8px 6px 16px;
  text-decoration: none;
  font-size: 20px;
  color: #818181;
  display: block;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  cursor: pointer;
  outline: none;
}

/* On mouse-over */
.sidenav a:hover, .dropdown-btn:hover {
  background-color: #08002D;  
  color: white;
}

/* Main content */
.main {
  margin-left: 200px; /* Same as the width of the sidenav */
  font-size: 20px; /* Increased text to enable scrolling */
  padding: 0px 10px;
}

/* Add an active class to the active dropdown button */
.active {
  background-color: #440077;
  color: white;
}

/* Dropdown container (hidden by default). Optional: add a lighter background color and some left padding to change the design of the dropdown content */
.dropdown-container {
  display: none;
  padding-left: 8px;
}


/* Some media queries for responsiveness */
@media screen and (max-height: 450px) {
  .sidenav {padding-top: 15px;}
  .sidenav a {font-size: 18px;}
}
#grad1 {
  min-height: 1000px;
  background-image: radial-gradient(circle, #8800FF, #8800FF,#007744, #000, #000 );
  background-attachment: fixed;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
#grad2 {
  background-color: #000; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom right, #18002D, #000);
}
#grad-note {
  background-color: #000; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom right, #009999, #000);
  color: #FFFFFF;
  padding-top: 4px;
  padding-bottom: 4px;
}
#grad-warning {
  background-color: #000; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom right, #FFFF00, #222200);
  color: #000;
  padding-top: 4px;
  padding-bottom: 4px;
}
#grad-danger {
  background-color: #000; /* For browsers that do not support gradients */
  background-image: linear-gradient(to bottom right, #C41800, #220000);
  color: #FFF;
  padding-top: 4px;
  padding-bottom: 4px;
}
h1 {
  margin-top: 3px;
  margin-bottom: 0px;
  color: #8800FF;
}
h2, h3, h4, h5 {
  margin-top: 3px;
  margin-bottom: 0px;
  color: #FFF;
}
p {
 color: #FFF; 
 text-align: left;
}
ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
  width: 200px;
  background-color: #08001D;
}
li a {
  display: block;
  color: #8800FF;
  padding: 4px 8px;
  text-decoration: none;
}
li a:hover {
  background-color: #8800FF;
  color: white;
}
div {
  width:1300px;
  margin:auto;
  color:#FFFFFF;
  text-align: justify;
  text-justify: inter-word;
}

hr {
  color:#8800FF
}
h3 + p {
  margin-top: 0px;
}
h4 + p {
  margin-top: 0px;
}
:link {
  color: #8800FF;
  text-decoration: none;
}

:link:hover {
  color: white;
  text-decoration: none;
}

:visited {
  color: #8800FF;
  text-decoration: none;
}
