/*
 * Base structure
 */
 html,body{ 
	width:100%;
	height:100%;
}
body {
  text-shadow: 0 .05rem .1rem rgba(0, 0, 0, .25);
  box-shadow: inset 0 0 5rem rgba(0, 0, 0, .5);
  font-family: "Roboto Serif", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}
.cover-container {
  max-width: 44em;
}
#particles-js{
  width: 100%;
  height: 100%;
  /* background-color: #b61924;
  background-image: url(''); */
  background-size: cover;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  position: fixed;
  top: 0;
  left: 0;
}
/*
 * Header
 */
 .navbar, .navbar-brand {
  margin-right: 0;
  padding: 1em 0;
  border: none;
}
.navbar-brand img {
  width: 100%;
  max-width: 360px;
}
.navbar-nav {
  align-items: center;
}

/*
 * Main 
 */
.navbar-nav a, main, footer {
  z-index: 2;
}

/*
 * Footer
 */

footer a {
  color: #fff;
  display: inline-block;
  text-decoration: none;
  border-bottom: solid 2px #ECAC24;
  padding: 0;
  transition: color 0.5s ease;
}
footer a:hover {
  color: #ECAC24;
  border-bottom: solid 2px #ECAC24;
  transition: color 0.25s ease;
  text-shadow: 0 .05rem .1rem rgba(236, 172, 36, .25);
}