
@import url('https://fonts.googleapis.com/css?family=Raleway');

  body {
    background-image: linear-gradient(90deg, rgb(110, 0, 110), rgb(0, 0, 110));
    color: white;
    font-size: 16px;
    margin: 5%;
    text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.75);
  }
  
  ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.75);
    background-color: rgb(0, 0, 0);
    border-radius: 15px
    
  }
  
  li {
    float: none;
    font-size: 24px;
  }
  
  li a {
    display: block;
    font-weight: normal; 
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
  }
  
  /* Change the link color to #111 (black) on hover */
  li a:hover {
    background-color: #350066;
    font-weight: bold;
  }

  hr { background-color: #1a1d24; height: 2px; border: 0; border-radius: 2px }

/* Body */

body, html {
  height: 100%;
  text-align: center;
}

h1, h2, h3, h4 {
  text-shadow: 0px 0px 8px rgba(0, 0, 0, 0.75);
}

*{
  font-family: 'Raleway', sans-serif;
}


/* Normal Button */

.GenericButton {
background-color:#191E25;
border: none;
color: white;
border-radius: 12px;
border: 2px solid #ffffff;
padding: 15px 32px;
text-align: center;
text-decoration: none;
display: inline-block;
font-size: 16px;
-webkit-transition-duration: 0.2s;
transition-duration: 0.2s;
-webkit-box-shadow: inset 0px 0px 5px rgb(31, 31, 31);
 -moz-box-shadow:    inset 0px 0px 5px rgb(31, 31, 31);
 box-shadow:         inset 0px 0px 5px rgb(31, 31, 31);
}

.GenericButton:active {
-webkit-box-shadow: inset 0px 0px 20px rgb(31, 31, 31);
 -moz-box-shadow:    inset 0px 0px 20px rgb(31, 31, 31);
 box-shadow:         inset 0px 0px 20px rgb(31, 31, 31);
}

.GenericButton:focus {
  outline-style: none
}

.GenericButton:hover {
-webkit-box-shadow: inset 0px 0px 15px rgb(255, 255, 255);
 -moz-box-shadow:    inset 0px 0px 15px rgb(255, 255, 255);
 box-shadow:         inset 0px 0px 15px rgb(255, 255, 255);
}

.btn-group button {
  background-color: rgb(0, 0, 0); 
  border: 4px solid rgb(0, 0, 0); 
  color: white; /* White text */
  padding: 10px 24px; /* Some padding */
  cursor: pointer; /* Pointer/hand icon */
}

/* Clear floats (clearfix hack) */
.btn-group:after {
  content: "";
  clear: both;
  display: table;
}

/* Add a background color on hover */
.btn-group button:hover {
  background-color: #350066;
}

