﻿/*=========================================================
  ENMODÜLER YAZILIM — RESET / TEMEL ELEMENTLER
=========================================================*/

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    font-size: 16px;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

button {
    border: none;
    background: none;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}

input,
textarea,
select {
    outline: none;
    box-shadow: none;
    font-family: inherit;
}

section {
    position: relative;
    padding: 110px 0;
}

.container {
    max-width: var(--container);
}
