html{
    width:100%;
    margin:0;
}
body {

    width: calc(100% - 20px);
    max-width: 800px;
    margin: 60px auto;

    font-family: Helvetica, Arial, sans-serif;
    font-size: 20px;
    font-weight: 100;
    line-height: 1.6em;

    /* TEST TEST TEST */
    /*background-color: black;
    color:white;
    background-color: #bada55;
    color: #ff4040;*/

    position: relative;

}
/* TEST TEST TEST
#test{
    background:#000;
    color:#fff;
}*/
a, span[data-fake-link]{
    color: hsl(200,80%,60%);
    transition: color 0.1s;
}
a:hover, span[data-fake-link]:hover{
    color: hsl(200,80%,80%);
}
span[data-fake-link]{
    cursor: pointer;
    text-decoration: underline;
}
b, strong{
    font-weight: bold;
}
hr{
    border:none;
    border-top: 3px dashed #ddd;
    margin-bottom: 2em;
    margin-top: 30em;
}
strike{
    opacity: 0.33;
}

#big_nuts{
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
}
#big_nuts > li > a{
    font-size:50px;
    line-height:1.75em;
}

#PointyMcPointFace{
    position: absolute;
    top: -6px;
    right: 6px;
    width: 400px;
    height: 350px;
    background: url(sprites/point.png);
    background-position-y: 0%;
    background-size: 100%;
    pointer-events: none;
    transition: opacity 0.2s, right 0.2s;
}

#share{
    text-align: right;
    font-size: 0.75em;
    line-height: 1.3em;
    margin-top: 1em;
    color: #999;
}
#share a{
    color: #aaa;
}
#share a:hover{
    color: #ccc;
}

/* hack to target iframes */
iframe[data-splash=yes]{
    border: none !important;
    margin: 0 auto !important;
    display: block !important;
}
iframe[data-include=yes]{
    border: none !important;
}
img[data-border]{
    border:1px solid #ccc;
}

/* MOBILE */
@media (max-width: 810px){
    body{
        font-size: 30px;
        font-weight: normal;
    }
    #PointyMcPointFace{
        visibility: hidden;
    }
    #pointys_target{
        animation: blinker 1.38s linear infinite;
        border-radius: 1em;
    }
    iframe[data-splash=yes]{
        width: 580px;
        height: 210px;
    }
}
@keyframes blinker {
    0% { background:#fff; }
    50% { background:hsl(200,80%,80%); }
    100% { background:#fff; }
}