/* Reset CSS */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 100%;
  /* Varsayılan font büyüklüğü (16px) */
  line-height: 1.5;
  /* Daha okunaklı metinler */
  -webkit-text-size-adjust: 100%;
  /* iOS metin boyutlandırma sıfırlaması */
}

body {
  margin: 0;
  font-family: Arial, sans-serif;
  /* Varsayılan font ailesi */
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  /* Yazı tipi pürüzsüzleştirme */
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
  margin: 0;
  padding: 0;
}

button {
  background: none;
  border: none;
  cursor: pointer;
}

a {
  text-decoration: none;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

strong,
b {
  font-weight: bold;
}