/*########################################
/#####RESET ELEMENTS
########################################*/
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
ul {
  list-style: none; list-style-type: none;
}
ul li {
  float: left;
}
img, fieldset {
  border: none;
}
h1, h2, h3, h4, h5, h6 {
  font-weight: normal; margin-bottom: 10px;
}

/*########################################
/#####FONTS
########################################*/
@font-face {
    font-family: 'Fugue';
    src: url('font-files/fugue-regular-webfont.woff2') format('woff2'),
         url('font-files/fugue-regular-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}


/*########################################
/#####MAIN ELEMENTS
########################################*/
::selection, ::-moz-selection {

}

body {
    font-family: 'Fugue'; background: #000;
}
body.projects {
    background: #FFF;
}
.content {
    max-width: 980px; padding: 0px 30px; margin: auto; width: 100%;
    position: relative; z-index: 100;
}
.clear {
    width: 100%; clear: both; display: block; float: left;
}
.input {
    float: left; width: 100%;
}
h1 {

}
h2 {

}
strong {
    font-weight: 800;
}
hr {
    margin: 20px auto; border: none; width: 100%; height: 1px; background: #000;
}
p {
    display: block; margin-bottom: 10px;
}
a {
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}


