@import url('simple-grid.min.css');

*{
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;

    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    
    color: #FFF
}

body{
    background-image: url(hero.png);
    background-repeat: repeat-x;
    background-size: 50%,50%,
    font-family: 'Heebo', sans-serif;
    font-weight: 300;
}

.section{
    background-color: #2E6549;
    padding-bottom: 50px;
}

.footer{
    position: fixed;
    bottom: 5px;
    right: 5px;
    opacity: 0.4;
}

.container{
    margin-top: 50px;
}

p{
    margin: 0;
}

hr{
    opacity: 0.3;
    margin-top: 20px;

}

.secret{
    display: none;
}

.hero{ 
    width:100%;
    margin-bottom: -100px;
}

/* TEXT */

.center{
    text-align: center;
}

.subtitle{
    margin-top: -15px;
}

.subtext{
    margin-top: -10px;
}

p.is-1,
span.is-1{
    font-weight: 900;
    font-size: 2em;
}

p.is-2,
span.is-2{
    font-size: 1.5em;
    font-weight: 300;
}

p.is-3,
span.is-3{
    font-size: 0.8em;
}

.danger{
    color: #ff3860;
}

.gold{
    color: #FFCC00;
}

.expand{
    cursor: pointer;
}

/* ICONS */

.fa{
    margin: auto;
    font-size: 65% !important;
}

.fa.is-ok{
    color: #569768;
}

/* BUTTON */

.click {
    padding: 10px;
    border-radius: 7px;
    cursor: pointer;
}

.click.is-ok {
    background-color: #569768;
}

.click.is-ok:hover{
    opacity: .8;
}

.click.is-ok:active{
    background-color: #85DA9D;
}

.click.is-not-ok{
    background-color: #22593D  ;
    cursor:not-allowed;
}

.reset{
    padding: 10px;
    border-radius: 7px;
    background-color: #F4F4F4;
    cursor: pointer;
    color: #393939;
}