@charset "utf-8";
/* CSS Document */

.topnav {
/* background-color: #047439; overflow: hidden;  */
z-index:999; width:100%; margin:0px; text-align:right; float:right; padding-top:12px; 

  background: linear-gradient(135deg, #0b132b 0%, #1e40af 35%, #6d28d9 70%, #9333ea 100%);
  position: relative;
  overflow: hidden;

}


 

/* Style the links inside the navigation bar */
.topnav a {float: left; display: block;  color: #fff;  text-align: center;  padding:9px 9px;  text-decoration: none;  font-size: 15px;  margin:0px;  border-radius: 25px; /* Rounded borders */}

/* Change the color of links on hover */
/*.topnav a:hover {  background-color: #fff;  color: #c0154d;}*/

/* Add an active class to highlight the current page */
.topnav a.active { background-color: #fff;  color: #c0154d;}

/* Change the color of links for spring2020 */
.topnav a.spring{float: left;background-color: #333;  display: block;  color: #fff;  text-align: center;  padding:10px;  text-decoration: none;  font-size: 14px;  margin:0px;}

/* Change the color of links on hover */
.topnav a.spring:hover {  background-color: #b83d46;  color: #fff;}

/* Add an active class to highlight the current page */
.topnav a.spring.active { background-color: #b83d46;  color: #fff;}





/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
padding:10px 20px 10px 20px; display: none; border: 1px #999999 solid; border-radius:5px; font-size:16px;
}

 /* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {
  .topnav a:not(:first-child) {display: none;}  .topnav a.icon {float: right; display: block;}
}

/* The "responsive" class is added to the topnav with JavaScript when the user clicks on the icon. This class makes the topnav look good on small screens (display the links vertically instead of horizontally) */
@media screen and (max-width: 600px) {
  .topnav.responsive {position: relative;}  .topnav.responsive a.icon {position: absolute;  right: 0; top: 0;  }
  .topnav.responsive a {float: none; display: block; text-align: left;}
} 
