* {
  box-sizing: border-box;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
  font-family: Arial;
  font-size: 10px;
  font-weight:500;
  letter-spacing: 3px;
  background-color: rgb(255, 255, 255);
  color:white;
}
header, span, ul, li, a, i, footer{
  letter-spacing: 3px;
  background-color:#002F6C;
  text-decoration: none;
  font-size:20px;
}
header{
  display:flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 1px;
  width:100%;
  height: auto;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 0px 2px 4px rgba(15, 57, 182, 0.4);
}
span.aura{
  display: flex;
	margin-left: 5%;
  float: left;
  padding:0px;
}

/* Navigation List CSS *******************************************************/
.nav_list{
  list-style: none;
}
li.nav_list{
  display: inline-block;
  height: 40px;
  padding: 0 5px;
  height: auto;
}
.nav_list li a{
  transition: all 0.3s ease;
}
a{
  color: white;
}
a.nav_list:hover{
  background-color:#22335A;
}
a:visited {
  color: #95B2F4;
}

/* Main content *******************************************************************/
p{
  padding: 4%;
  color:#002F6C;
}
/*Footer CSS*/
footer{
  position: fixed;
	width: 100%;
	left: 0;
	bottom: 0;
	text-align: center;
}

/* Media queries for screen size.*********************************************/
@media screen and (max-width: 600px) {
  body, a{
    font-size: 15px;
  }
}
