body{
    text-align: center;
    background-color: #131E61;
    color: #FFFFFF;
    font-family: 'Times New Roman', Times, serif;
}
h1{
  color: white;  
}
h2{
    color: white;
}
a:link{
    color: white;
}
a:visited{
    color: #939799;
}
a:hover{
    color: turquoise;
}
.glass{
	/* background styles */
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	background-color: lightskyblue; /*for compatibility with older browsers*/
	background-image: linear-gradient(rgb(0, 183, 255),rgb(184, 227, 235));

	/* text styles */
	text-decoration: none;
	color: #fff;
	font-size: 25px;
	font-family: sans-serif;
	font-weight: 100;

    border-radius: 6px;
    box-shadow: 0px 1px 4px -2px #333;
    text-shadow: 0px -1px #333;
}
.glass:after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
}
.glass:hover{
    background: linear-gradient(rgb(43, 129, 155),rgb(155, 218, 255))
}
.glass:visited{
    color: white;
}
/* Add a black background color to the top navigation */
.topnav {
	background-color: rgb(47, 53, 56);
	overflow: hidden;
	border-radius: 6px;

  }
  
  /* Style the links inside the navigation bar */
  .topnav a {
	position: relative;
	display: inline-block;
	padding: 15px 25px;
	background-color: lightskyblue; /*for compatibility with older browsers*/
	background-image: linear-gradient(rgb(184, 227, 235), rgb(0, 183, 255));
	color: black;
	text-align: center;
	padding: 14px 16px;
	text-decoration: none;
	font-size: 17px;
	font-family: sans-serif;
	font-weight: 100;
		
	border-radius: 6px;
	border-width: 6px;
	border-color: black;
	box-shadow: 0px 1px 4px -2px #333;
	box-sizing: content-box;
	text-shadow: 0px -1px #333;
  }
  .topnav a.after{
	content: '';
	position: absolute;
	top: 2px;
	left: 2px;
	width: calc(100% - 4px);
	height: 50%;
	background: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  }
  /* Add a color to the active/current link */
  .topnav a.active {
	background-image: linear-gradient(rgb(43, 129, 155), rgb(155, 218, 255));
	
	color: black;
  }
  /* Change the color of links on hover */
  .topnav a:hover {
	background-image: linear-gradient(rgba(255,255,255,0.8), rgba(255,255,255,0.2));
  }