/* 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;
}

/* 
    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. 
*/

body {
    background-image: url(../_images/bkg\ image.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: top right;
    padding-bottom: 10 px;
    width: 1400 px;
}


/*  
    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
*/
#wrapper {
    
    margin: 0 auto;
    width: 1080px;
    min-height: 1920px;
    position: relative;
}


/* Joseph Giomboni, Ph.D. Welcome to my Website */
#header-text{
position: relative;
width: 679px;
height: 132px;
left: 51px;
top: 102px;

font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 60px;
line-height: 70px;
color: #FFFFFF;
}

/* Header */
#header-bkg{
position: absolute;
width: 1400px;
height: 345px;
left: 0px;
top: 0px;
background: #3A2F2F;
}

/* NAV BAR */
nav {
    position: absolute;
    width: 1200 px;
    height: 60px;
    left: 51px;
    top: 264px;
    font-family: 'Roboto';
    font-style: normal;
    font-weight: 400;
    font-size: 40px;
    line-height: 47px;
    color: #FFFFFF;
}

nav a {
    text-decoration: none; 
    color: white; 
    display: inline-block; 
    margin-right: 30 px; 

}

nav a:hover {
    color: red; 
}


#content-wrap {
    max-width: 800 px; 
    width: 85%; 
    margin: 0 auto; 
}


/* Index Body Text */
#body-text{
position: absolute;
width: 650px;
height: 455px;
left: 299px;
top: 396px;   
font-family: 'Roboto';
font-style: normal;
font-weight: 400;
font-size: 24px;
line-height: 28px;
color: #000000;
padding: 10px;
background-color: bisque;
}

