*, *:before, *:after{
	box-sizing: inherit;
}
.hed{
  position: sticky;
  top: 0;
}
a {
  color: white;
  text-decoration: none;
  display: inline-block;
  letter-spacing: 2px;
  text-align: center;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 0px;
  width: 100%;
  font-size: 22px;
}

a:hover{
	background: rgba(0, 0, 0, 0.3);
}

body{
	font-family: sans;
	margin: 0;
	background: linear-gradient(rgb(255, 255, 255), rgb(121, 120, 120));
    height: 1150px;
}

.wrapper {
    margin: 0 auto;
    max-width: 1200px;
    padding: 50px;
  }

  .wrapper:after{
    content: '';
    display: table;
    clear: both;
  }


  section, footer{
	text-align: center;
	background: rgba(0, 0, 0, 0);
	color: white;
	padding: 10px;
	margin: 20px 0;
	font-weight: 300;
}

.content{
    float: right;
    width: 70%;
    padding: 0px;
}

.cont{
  padding: 10px 20px;
  background: rgba(0, 0, 0, 0.2);
  font-size: 20px;
}
.cont:after{
  content: '';
  display: table;
  clear: both;
}

.sidebar{
    float: left;
    width: 25%;
    padding: 20px;
    
  }

.img-left{
    width: 300px;
    margin: 0px 0px;
    position: relative;
    z-index: 1;
}


.footer {
    background: #e9e9e9;
    height: 106px;
    text-align: center;
    margin-top: 15px;
    font-size: 20px;
    margin: 0 auto;
    max-width: 1200px;
    line-height: 32px;
    letter-spacing: 1px;
   
  }


  @media all and (max-width: 1200px) {
	.sidebar { display: none;}
    .content{width: 98%;
        float: left;}
  }