/* Box-sizing ayarları */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Genel sıfırlama */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
ul {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* Bağlantı stilleri */
a {
  display: block;
  text-decoration: none;
  color: inherit;
}

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

/* Tablo stilleri */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Form stilleri */
input,
textarea,
select,
button {
  outline: none;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

/* Görünüm */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

html {
  scroll-behavior: smooth;
}
