/* These are the codes to the colors on the color scheme.
	Violet #6E3667
	Electric Lime #88d317
	Deep Plum #1a0315
	Shadow #535353
*/


/* This is for the background image */
body, html {
    height: 100%;
    margin: 0;
}

.bg {
    background: 
    /* Transparent purple over image */
    linear-gradient(
      rgba(26, 3, 21, 0.45), 
      rgba(26, 3, 21, 0.45)
    ),
    /* image */
    url(../images/background1.jpg);

    /* Full height */
    height: 100%; 

    /* Center and scale the image nicely */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}



/* Navbar */
ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    background-color: transparent;
}

li {
    float: right;
	margin-right: 10px;
}

li a {
	color: white;
    display: block;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
    border-bottom: 1px solid #88d317;
}



/* Writing on Home Page */
h1{
	color: white;
	text-align: center;
	font-size: 72px;
}

p{
	width: 50%;
	text-align: center;
	margin: auto;
	color: white;
}


/* Font family and color for WCi */
@font-face { font-family: agency; src: url('../fonts/Agency_FB.ttf'); } 

.wci{
	color:#88d317;
	font-family: agency;
}


/* Button */
button{
	background-color: #6e3667;
	border: none;
	color: white;
	text-align: center;
	font-size: 16px;
	padding: 10px 45px;
}

#centerButton{
	text-align: center;
}

button:hover{
	border-bottom: 1px solid #88d317;
	border-right: 1px solid #88d317;
	box-shadow: 0px 0px 5px #88d317;
}