/* css reset */
a,abbr,acronym,address,applet,big,blockquote,body,caption,cite,code,dd,del,dfn,div,dl,dt,fieldset,font,form,h1,h2,h3,h4,h5,h6,html,iframe,img,ins,kbd,label,legend,li,object,ol,p,pre,q,s,samp,small,span,strike,sub,sup,table,tbody,td,tfoot,th,thead,tr,tt,ul,var{margin:0;padding:0;border:0;outline:0;font-weight:inherit;font-style:inherit;font-size:100%;font-family:inherit}:focus{outline:0}body{line-height:1;color:#000;background:#fff}ol,ul{list-style:none}table{border-collapse:separate;border-spacing:0}caption,td,th{text-align:left;font-weight:400}blockquote:after,blockquote:before,q:after,q:before{content:""}blockquote,q{quotes:"" ""}.alignleft{float:left}.alignright{float:right}.clear{clear:both}

/* fonts datakado */
@font-face {
    font-family: 'Title';
    src: url('assets/fonts/Disket-Mono-Bold.ttf');
    font-weight: bold;
}
@font-face {
    font-family: 'Content';
    src: url('assets/fonts/Roboto-Light.ttf');
    font-weight: regular;
}

/* css datakado */
#header, #content, #footer{
    width: 900px;
    margin: 0 auto;
}
#footer{
    /* padding: 100px 0; */
    clear: both;
}
/* #header{
    border: 1px solid black;
} */
div.product{
    width: 300px;
    padding: 50px 0;
    margin: 0 auto;
    border: 1px solid black;

}
div.product img{
    width: 100%;
    margin-bottom: 50px;
    border-bottom: 1px solid black;
    border-top: 1px solid black;
}

div.step{
    width: 500px;
    padding: 75px 0;
    margin: 0 auto;
    clear: both;
}
div.step img{
    width: 200px;
    height: 200px;
    background-color: #24C17C;
    border: 1px solid black;
}
#price{
    margin: 100px 0;
    padding: 100px 0;
    text-align: center;
    background-color: #24C17C;
    color: #FCFCF2;
    border-top: 1px solid black;
    border-bottom: 1px solid black;
}
hr{
    width: 50px;
    margin-top: 100px;
    border-bottom: none;
}
#product{
    text-align: center;
}
img.hero{
    border: 1px solid black;
    width: 700px;
    /* margin: 50px 0; */
}
img.explain{
    width: 500px;
    margin: 25px 0;
    border: 1px solid black;
}
img.big{
    width: 900px;
    margin: 25px 0;
}
img.right{
    float: right;
    margin-left: 25px;
}
img.left{
    float: left;
    margin-right: 25px;
}

/* type */
body{
    font-size: 14px;
    background-color: #FCFCF2;
}

h1, h2, h3{
    font-family: 'Title', 'Helvetic', 'Arial', sans-serif;
}
h1{
    text-align: center;
    font-size: 4em;
    margin: 200px 0 50px 0;
}
h2{
    font-size: 1.5em;
    margin-bottom: 50px;
    text-align: center;
}
#product h2{
    margin-top: 100px;
}
h3{
    font-size: 1.3em;
    margin-bottom: 15px;
    text-align: left;
}

p, span, a{
    font-family: 'content', 'Helvetic', 'Arial', sans-serif;
    line-height: 1.4em;
}
p{
    font-size: 1.5em;
}
#header p, #footer p{
    font-size: 2em;
    margin: 50px 0;
    text-align: center;
}
.product p{
    text-align: center;
}
#product p{
    margin: 25px auto;
    width: 500px;
}
.step p{
    font-size: 1.2em;
    text-align: left;
    margin: 0;
}
#footer p.credits{
    font-size: 1em;
}

span{
    color: #24C17C;
    text-decoration: underline;
}
span.color{
    color: #fff;
    display: inline-block;
    padding: 5px 10px;
    text-decoration: none;
    border: 1px solid black;
    font-weight: bold;
}
span.green{
    background-color: #afd472;
}
span.red{
    background-color: #EF7697;
}
span.blue{
    background-color: #78cdd0;
}
a.button{
    /* display: inline-block; */
    color: white;
    background-color: #24C17C;
    padding: 10px 15px;
    text-decoration: none;
    cursor: pointer;
    border: 3px solid black;
}


@media (max-width: 900px) {
    #header, #content, #price, #product, #footer{
        width: 100%;
    }
    #content{
        text-align: center;
    }
    div.product{
        margin: 25px auto 50px auto;
    }
    img.big{
        width: 100%;
    }

    h1{
        font-size: 2em;
        margin: 100px 0 50px 0;
    }
    #header p, #footer p{
        font-size: 1.5em;
        margin: 50px 0;
    }
    #product p{
        width: 100%;
    }
    #footer p.credits{
        font-size: 1em;
    }
    div.step{
        margin-top: 50px;
        padding: 25px 0;
    }

}
@media (max-width: 500px){
    div.step{
        width: 100%;
        margin-top: 0;
        border-top: 1px solid black;

    }
    div.step img{
        float: none;
        margin: 0 0 25px 0;
    }
    img.hero{
        width: 100% !important;
    }
}