

*, *:before, *:after {
    margin: 0;
    padding: 0;
  }
  
  body {
    font-family: 'Conv_Roboto-Regular', Sans-Serif; /* Font family for entire body */
    font-size: 14px; 
    font-weight: normal;
    color: #202124; /* color for entire body */
    line-height: 1.5em;
    background: #f1f3f6; 
  }
  
  a {
    font-style: italic;
    text-decoration: none;
    color: #2b80ff; /* color for hyperlinks */
  }
  a:hover{
    color: #067100;
    font-size: large;
  }
  
  ul {
    padding-left: 0;
  }
  
  li {
    list-style: none;
  }
  
  /*** 2.0 - Globals ***/
  
  h1 {
    text-transform: uppercase;
    font-size: 26px;
  }
  
  h2, h3 {
    font-weight: 500;
  }
  
  h2 {
    margin-bottom: 25px;
    text-transform: uppercase;
    font-weight: bold;
  }
  
  h2 span {
    vertical-align: bottom;
    margin-left: 20px;
  }
  
  h3 {
    color: #1a73e8;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-size: 16px;
  }
  
  article {
    margin-bottom: 40px;
  }
  
  p {
    margin-bottom: 5px;
  }
  
  p span {
    color: #8f9293;
    margin-bottom: 15px;
    display: block;
  }
  
  /*** 3.0 - Fonts ***/
  @font-face {
    font-family: 'Conv_Roboto-Regular';
    src: url('fonts/Roboto-Regular.eot');
    src: local('☺'), url('../fonts/Roboto-Regular.woff') format('woff'), url('../fonts/Roboto-Regular.ttf') format('truetype'), url('../fonts/Roboto-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
  }
  
  /*** 4.0 - Body ***/
  #wrapper {
    background-color: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 4px 0 rgba(0, 0, 0, .08);
    border-top: 1px solid #eaeaea;
    padding: 30px;
    margin: 20px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
  }
  
  header {
    min-height: 80px;
    margin-bottom: 30px;
    border-bottom: 1px dashed #ddd; 
      width: 100%;
      float: left;
  }
  
  header h1 {
    float: left;
    line-height: 80px; /* here line-height should be equal to height of the main class header */
  }
  
  header ul li {
    background: none;
    float: right;
    margin-right: 15px;
    line-height: 80px; /* here line-height should be equal to height of the main class header */
  }
  
  header ul li i {
    vertical-align: middle;
    padding-right: 8px;
  }
  
  .main-content {
    border-bottom: 1px dashed #ddd;
    
  }
  
  aside {
    width: 28%;
    float: left;
  }
  
  .body-content {
    width: 65%;
    float: right;
  }
  
  /*** 5.0 - Mediaqueries ***/
  @media (min-width:320px) and (max-width: 991px) {
      
    h1 {
      color: #fff;
      margin-bottom: 20px;
    }
      
    h2 {
      background: #f0f0f0;
      padding: 10px;
      border-radius: 5px;
    }
      
    h2 i {
        float: right;
        vertical-align: bottom;
      }
      
    aside {
      width: 100%;
    }
      
    .body-content {
      width: 100%;
    }
      
    header {
    
      border-radius: 5px;
      /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#49c0f0+0,2d5ae2+100 */
      background: #49c0f0; /* Old browsers */
      background: -moz-linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%); /* FF3.6-15 */
      background: -webkit-linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%); /* Chrome10-25,Safari5.1-6 */
      background: linear-gradient(45deg, #49c0f0 0%, #2d5ae2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#49c0f0', endColorstr='#2d5ae2', GradientType=1); /* IE6-9 fallback on horizontal gradient */
      border-bottom: 0;
      padding: 20px 5%;
  margin-top: 0;
  width: 90%;
    }
  header h1 {
      float: none;
      line-height: 20px;
  }	
  header ul li {
      background: none;
      float: none;
      margin-right: 0;
      line-height: 36px;
      padding-left: 0;
  }
      header ul li a {
          color: #fff;
      }
    #wrapper {
      max-width: 84%;
      padding: 20px 5%;
      margin: 15px 3%;
    }
      
  }