
/* Body 
------------------------------------- */
body {
		background: #ffffff;
    color: #808080;
    font-family: 'Oxygen', sans-serif;
    font-weight: 400;
    position: relative;
    text-align: center;
}

html,body {
      width: 100%;
     overflow-x: hidden;
  }

hr {width: 100px;}

span, h3 {color: #63c6ae;}

h2 {color: #606060;font-size: 28px;
  padding-bottom: 4px;}

h2,h3 {letter-spacing: 0.4px;}
h3 {
  font-size: 23px;
  font-weight: bold;
}

p {
  font-size: 18px;
  letter-spacing: 0.6px;
  line-height: 32px;
}

/* home section styles
/* ========================================== */
#home {
  padding-top: 60px;
  height: 100vh;
}

#home .home-title {
  padding-top: 32px;
  padding-bottom: 42px;}

#home p {
  padding-bottom: 22px;
}
#home a {
   color: #63c6ae;
  text-decoration: none;
}

.boxed {
   border: 1px solid #606060;
   text-align: left;
   font-size: 18px;
   padding-top: 18px;

  
}


.help-tip{
    position: absolute;
    top: 18px;
    right: 18px;
    text-align: center;
    background-color: #BCDBEA;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    font-size: 14px;
    line-height: 26px;
    cursor: default;
}

.help-tip:before{
    content:'?';
    font-weight: bold;
    color:#fff;
}

.help-tip:hover p{
    display:block;
    transform-origin: 100% 0%;

    -webkit-animation: fadeIn 0.3s ease-in-out;
    animation: fadeIn 0.3s ease-in-out;

}

.help-tip p{    /* The tooltip */
    display: none;
    text-align: left;
    background-color: #1E2021;
    padding: 20px;
    width: 300px;
    position: absolute;
    border-radius: 3px;
    box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2);
    right: -4px;
    color: #FFF;
    font-size: 13px;
    line-height: 1.4;
}

.help-tip p:before{ /* The pointer of the tooltip */
    position: absolute;
    content: '';
    width:0;
    height: 0;
    border:6px solid transparent;
    border-bottom-color:#1E2021;
    right:10px;
    top:-12px;
}

.help-tip p:after{ /* Prevents the tooltip from being hidden */
    width:100%;
    height:40px;
    content:'';
    position: absolute;
    top:-40px;
    left:0;
}

/* CSS animation */

@-webkit-keyframes fadeIn {
    0% { 
        opacity:0; 
        transform: scale(0.6);
    }

    100% {
        opacity:100%;
        transform: scale(1);
    }
}

@keyframes fadeIn {
    0% { opacity:0; }
    100% { opacity:100%; }
}



#container li {
	display: inline-block;
	list-style-type: none;
	margin: 20px;
}

/* center the background image */
#container li a {
	background-repeat: no-repeat;
	background-position: center center;
	display: block;
}

/* define the circle and fall under the image */
#container li a span {
	border-radius: 10%;
	display: block;
	position: relative;
	z-index: -1;
	width: 170px;
	height: 240px;
	transition: transform .15s cubic-bezier(.11,.65,1,1.69);
}


/* the "circle" color */
#container li a.angry span {
    background-color: #FFAD47;
    
}
#container li a.happy span {
    background-color: #FFAD47;
}

#container li a.link span {
    background-color: #FFFFFF;
}

#container li a:hover span {
	transform: scale(1.1);
}




.countdown{
    position: absolute;
    top: 60px;
    left: 20px;
    
    width: 140px;
    height: 160px;

}