/* Color Palette 
- Pastel Orange: #FFDAB9
- Text Black: #FFFFFF
*/

/* Global styles 
------------------------------------*/


html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

.nav {
    position: fixed;        
    top: 0;                 
    left: 0;
    width: 100%;            
    background-color: #FFDAB9; 
    z-index: 1000;          
    text-align: center;
}
.nav a {
    color: #0c0000;        
    margin: 0 15px;         
    text-decoration: none;  
}
.column-wide {
    width: 70%;          
    float: left;        
    min-height: 225px; 
}
.column-narrow {
    width: 30%;          
    float: left;        
    padding-right: 3%;  
    min-height: 175px;  
}

.content-wrap {
    max-width: 950px; 
    margin: 0 auto; 
    padding: 50px;
    overflow: hidden;
    padding-top: 50px;
}
body {
    
  background-color: #FFDAB9; 
    font-family: 'Roboto', sans-serif; 
    color: #0c0000; 
    margin: 0;
    line-height: 1.6;
}


/* Header & Footer 
------------------------------------*/
h1 {
    font-size: 3.5rem; 
    margin: 0;
    text-transform: uppercase;
    font-weight: 700;
}

h2 {
    margin-top: 0;
    margin: 0;
    font-size: 1.8rem;
    font-weight: 300;
}
.profile-img {
    /*width: 300px; 
    height: 300px;
    float: left;     
    margin-right: 30px;*/

    border-radius : 50%; 
}
.main-footer {
    text-align: center;
    
} 
.contact-info a {
    padding: 10px;
    display: inline-block;
}

/* Work Experience
------------------------------------*/
.work-section {
    
    padding: 20px;
    background: linear-gradient(rgba(255, 218, 185, 0.8), rgba(255, 218, 185, 0.3)), 
                url('../images/bank-background.jpg');
    background-size: cover;

    /*border-top: 1px solid #090000; 
    border-bottom: 1px solid #090000;*/
}


/* Education
------------------------------------*/
.edu-section {
    
    
    border-top: 1px solid #090000;
    border-bottom: 1px solid #090000;
}