/* /dev/assets/css/reset.css */

/* Genel sıfırlamalar */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* HTML5 element reset */
article, aside, footer, header, nav, section {
  display: block;
}

html, body {
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  font-family: 'Montserrat', sans-serif;
  background: #fff;
  color: #333;
}

/* Listeler */
ul, ol {
  list-style: none;
}

/* Linkler */
a {
  text-decoration: none;
  color: inherit;
}

/* Görseller */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Form elementleri */
button, input, textarea, select {
  font: inherit;
  border: none;
  background: none;
  outline: none;
}
