/* Starter Stylesheet for our project.
-----------------------------------------------
Please read the comments to understand what
this code does. 

Refer to w3schools.com for help
-----------------------------------------------
*/

/*  This removes the default browser settings */
* {
    margin: 0; 
    padding: 0;
}

/*  
    This sets the outer container for your site.
    To use it, you will need to create division tag
    to hold the content. Give it an id="wrapper".
    I would look like this...
        <div id="wrapper">
    Put this division right after the body tag
    and close it right before the close of the body tag
*/

/* headers */
#header-text{
    width: 877px;
height: 117px;

    color: #FFF;
font-family: "Black Han Sans";
font-size: 85px;
font-style: normal;
font-weight: 400;
line-height: normal;
}

#header-two{
    width: 400 px;
    height: 100 px;
    color: white;
    font-family: "Black Han Sans";
    font-size: 60 px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

/* nav bar */
nav {
    position: absolute;
    left: 400 px;
    top: 35 px;
}

nav a {
    text-decoration: none;
    color: white;
    background-color: rgb(156, 50, 156);
    display: inline-block;
    margin-right: 30 px;
}

nav a:hover {
    color: red
}

/* wrapper */
#wrapper{
    margin: 0 auto;
    width: 1080px;
    min-height: 1920 px;
    position: relative;
}

/* Background Image*/
body {
    background-image: url(../_images/Background\ Image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    padding-bottom: 10 px;
    width: 1400 px
}

header {
    background-color: #143573;
}

footer{
    position: absolute;
    bottom: 0 px;
    height: 200 px;
    width: 100%;
    color: white;
    background-color: rgb(156, 50, 156);
}

#wrapper {
    position: relative;
    margin: 0 auto;
    width: somepixels;
    background-color: rgb(237, 195, 234);
    color: black;
}

/* 
    The is the syntax to set a background image.
    Copy the 2 styles below and put them in the tag
    you want to add a background image to. 
    Then, change the image to your image. 
*/
backgroundSample {
    background-image: url(../_images/bkg_main.png);
    background-repeat: no-repeat;
}


