/* Color Palette
#01161E- color 1
#313036 - color 2
#7A3100 - color 3
#424861 - color 4
#F9FADC - color 5
*/

/* Global styles ssaas
------------------------------------*/
html {
    box-sizing: border-box;
  }
  *, *:before, *:after {
    box-sizing: inherit;
  }
  body {
    background: #F4F4F9;
    margin: 0;
    font-family: 'Roboto', sans-serif;
    font-size: 1.2em;
    word-wrap: break-word;
  }
  .content-wrap{
    max-width: 950px; 
    margin: auto;
    margin-top: 0;
    padding-top: 40px;
    padding-bottom: 25px;
  }
  h1 {
    margin: 0;
    padding-top: 0.5em;
    font-family: 'Neucha', cursive;
    font-size: 2.5em;
  }
  
  h2 {
    margin: 0;
    font-size: 1.6em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    padding-top: 0.2em;
  }
  h3{
    margin: 0;
    font-size: 1.1em;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    padding-top: 0.2em;
    padding-bottom: 0;
  }
  p{
    margin-top:0.6em;
    padding: 0;
  }
  .column-narrow {
    width: 30%; 
    float: left; 
    padding-right: 3%; 
    min-height: 175px;
  }
  .column-wide {
    width: 70%; 
    float: left; 
    min-height: 225px;
  }
  /* Header & Footer 
  ------------------------------------*/
  header{
    color: #F9FADC;
    background: #01161E;
    font-size: 1.1em;
    overflow: auto;
    padding-top: 35px;
  }
  .profile-img{
    border-radius:50%;
    overflow:hidden;
  }
  footer{
    color: #F9FADC;
    background: #01161E;
  
    overflow: auto;
  }
  footer a{
    color: #F9FADC;
    text-decoration:none;
  }
  .nav a{
      display:inline-block;
      padding:5px;
      color: #01161E;
      text-decoration: none;
  }
  .contact-info{
    margin: 0;
    text-align:center;
  }
  .content-info a{
    padding: 10px; 
    display: inline-block;
  }
  footer a:hover{
    font-weight: bold;
  }
  /* Navigation
  ----------------------------------*/
  nav{
      border:10px;
      list-style:none;
      margin:0;
      padding:5px;
      text-align:center;
      background: #F9FADC;
      position:fixed;
      width:100%;
  }
  
  .nav a:visited{
      color:#01161E;
  }
  .nav a:hover {
      font-weight: bold;
  }
  
  /*Work Experience & Skills
  ------------------------------------*/
  .workexp{
    clear:both;
    color: #F9FADC;
    overflow: auto;
  }
  .skills{
    clear:both;
    background: #7A3100;
    color: #F9FADC;
    overflow: auto;
  }
  .projects{
    clear: both;
    background: #01161E;
    color: #F9FADC;
    overflow: auto;
  }
  .certifications{
    clear: both;
    background: #424861;
    color: #F9FADC;
    overflow: auto;
  }
  /*Code to add a gradient to the image*/
  .image-bg{
    background: linear-gradient(rgba(122, 49, 100, 0.5),
                   rgba(122, 49, 0, 0.8)),
                   url(https://cdn.glitch.global/5e7072ff-db4d-417a-aae8-03894dee0fb9/5567966.jpg?v=1665458961916) no-repeat;
    background-attachment: fixed;
  }
  /* Rows and Columns
  --------------------------------------*/
  .column {
    float: left;
    width: 50%;
    margin: 0;
  }
  .row:after {
    content: "";
    display: table;
    clear: both;
  }
  /* Education
  ------------------------------------*/
  .educert{
    clear:both;
    background: #424861;
    color: #F9FADC;
    overflow: auto;
  }
  .projects a{
    text-decoration: none;
  }
  .projects a:visited{
    color:#F9FADC;
  }
  .projects a:hover {
    font-weight: bold;
  }