* {
  -moz-box-sizing: border-box;                                                        
  -webkit-box-sizing: border-box;                                                    
  box-sizing: border-box;
}

body {
	background: #fff; 
	color: #807575; 
	font-size: 112%; 
  font-family: 'Lato', 'sans-serif';
	line-height: 2em;
	margin: 0; 
	padding: 0; 
}

a {
	color: #6A7574; 
	text-decoration: none;
}

a:hover { color: #FFF7E4; }

h1 {
  color: #807575;
  font-size: 3em;
  font-weight: 700;
  line-height: 1em;
  margin: 1em 0;
	text-align: center;
  text-transform: uppercase;
}

h2 {
	color: #F7A200;
  font-size: 1.5em;
  margin-bottom: .5em;
  text-transform: uppercase;
}

hr {
  border: 0;
  height: 0;
  margin: 2em 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(252, 227, 161, 0.3);
  width: 100%;
}

p { 
  font-size: 1.2em;
}

ul { list-style: none; }

.header { text-align: center; }

.lowercase { text-transform: none}

.center { text-align: center;}

/* =================================
  CONTAINER
   ============================== */

.container {
  margin: 0 auto;
  width: 90%;
  max-width: 740px;
  padding: 4em 0;
}

.light-orange {
  background: #FFF7E4;
  border: 1px solid #E9E9E9;
  width: 100%;
}

/* =================================
  EGGS
   ============================== */

.egg-fixed {
  float: left;
  margin: 0 auto;
  padding: 0;
  position: fixed;
  top: 10px;
  left: 5px;
  z-index: 100;
}

.egg {
  display:block;
  width: 35.9px;
  height: 42px;
  background-color: #F0BA53;
  -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
  border-radius: 50%  50%  50%  50%  / 60%   60%   40%  40%;
  font-size: 1em;
  text-align: center;
  float:left;
  margin: 0.2em;
}

.egg .penguin-hover { visibility: hidden; } 

.egg:hover .penguin-hover {
  background: #FFF7E4;
  width: 35.9px;
  height: 42px;
  -webkit-border-radius: 63px 63px 63px 63px / 108px 108px 72px 72px;
  border-radius: 50%  50%  50%  50%  / 60%   60%   40%  40%;
  visibility: visible; 
}

/* =================================
  COLUMNS
   ============================== */

.row { 
  overflow: hidden; 
  margin-bottom: 1em;
}

.column {
  float: left;
  margin-left: 5%;
  text-align: left;
  width: 47.5%;
}

.column:first-child { margin-left: 0; }

.column-right {
  float: right;
  margin-right: 5%;
  text-align: left;
  width: 47.5%;
}

.column-right:first-child { margin-right: 0; }

/* =================================
  EXAMPLES
   ============================== */

.p-absolute {
  bottom: 0;
  left: 0;
  position: absolute;
}

.p-zindex {
  bottom: 0;
  left: 0; 
  position:absolute;
  z-index: 10;
}

.c-zindex { 
  z-index: 10; 
  position:relative;
}

.c-relative {
  position: relative;
  top: 100px;
}

.relative { position: relative; }

/* =================================
  IMAGES
   ============================== */

.image {
  height: auto;
  /*makes their height automatically 
  proportionate to their width*/
  margin: 0 0 10px 0;
  max-width: 100%;
  /*makes your images more flexible
  without giving max-width, it'll break*/
}

.parent { max-width: 250px; }

.child-example {
  max-width: 150px;
  position: absolute;
  left: 96px;
  top: 91px;
}

.child { max-width: 150px; }

.double-padding { padding: 4em; }

/* =================================
  BOXES
   ============================== */

.box {
  background: #fff;
  border: 1px dashed #F0D9A1; 
  height: 300px;
  margin: 1em 0;
  padding: 1em;
  position: relative;
  text-align: center;
}

.box-two {
  background: #fff;
  border: 1px dashed #E9E9E9; 
  margin: 0 auto;
  padding: 1em;
  height: auto;
}

.position-example { position: relative; }

/* =================================
  GIST OVERRIDES
   ============================== */

.gist .gist-file {
  font-size: .9rem !important;
  margin: 0 auto;
  max-width: 750px;
  overflow: hidden !important;
  text-align: left;
}

.gist .gist-file .gist-data {
  background: #f8f8f8 !important;
  border-bottom: none !important;
}

.gist .gist-file .gist-meta {
  display: none !important;
}

.gist-syntax .k {
  color: #555 !important;
  font-weight: normal !important;
}

/* =================================
  CLEARFIX
   ============================== */

.cf:before,
.cf:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.cf:after { clear: both; }

.cf { *zoom: 1; }

/* =================================
  MEDIA
   ============================== */

img {
  width: 100%;
  height: auto;
}

@media (max-width: 400px) {
  .column {
    float: none;
    margin: 0;
    padding: 0;
    width: 100%;
  } 
}

