/* -------------------------------------------- */
/* Brain Simulation Section */
/* Version: 2 */
/* -------------------------------------------- */
/* Created by @twotribes, Germany */
/* -------------------------------------------- */
/* Scope: INITIALIZATION */
/* !-------------------------------------------- */

/* !-------------------------------------------- */
/* !Fonts */
/* !-------------------------------------------- */

@import url("https://use.typekit.net/fxe8nec.css");

/* !-------------------------------------------- */
/* !Reset-styles */
/* !-------------------------------------------- */

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-family: "caecilia", "Helvetica", "Arial", sans-serif;
    font-weight: 300;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body, h1, h2, h3, h4, h5, h6, p {
    margin: 0;
    padding: 0;
}

ul, ol, li, dl, dt, dd {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Teach that old bastard IE11 kindergarten-level initialization */
main {
    display: block;
}

/* !-------------------------------------------- */
/* !Development markers */
/* !-------------------------------------------- */

img[src=""] {
    min-height: 10px;
    min-width: 20px;
    background-color: rgba(0,0,0,0.2);
}

.debug {
    outline: 5px solid red !important;
}

