/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */
* {
  box-sizing: border-box;
}
.box {
  background-color: #c6f093;
}
.rounded {
  border-radius: 10px;
}
.padded {
  padding: 14px 16px;
}
.solid {
  color:green;
  border: 5px solid #fa71b6;
}
.dotted {
  border: 5px dotted #fa71b6;
}
header {
  margin: 50px 50px;
  color: #fa71b6;
}
ul{
  list-style-type: none;
  margin: 3;
  padding: 20;
  overflow: hidden;
}
ul li{
  float: left;
}
ul li a {
  display: block;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}
section{
  margin: 50px 50px;
  
}
.aside-left{
  width:500px;
  float:left;
}
.aside-right{
  width:500px;
  margin-left:30px;
  float:right;
}

.sticker{
  position:fixed;
}

#container{
  position:relative;
}
.footer{
  position:absolute;
  bottom:0;
  height:30%;
}





