:root {
    --renk-pembe: #E81C5C;
    --renk-beyaz: #F7F5F4;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
a{text-decoration: none;}

/* HTML */
html {
    scroll-behavior: smooth;
    font-size: 100%;
}

/* BODY */
body {
    font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--renk-beyaz);
    line-height: 1.75;
    letter-spacing: 0.2px;
    font-size: 1.6rem;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    display: flex;
    justify-content: center;
    min-height: 100vh;
}


::selection {
    background: transparent;
    color: #f00050;
}
::-webkit-scrollbar {
    width: 10px; 
}

::-webkit-scrollbar-track {
    background: transparent;  
    border-radius:5px;
}
::-webkit-scrollbar-thumb {
    background: #f00050;  
    border-radius: 5px;
    transition: background 0.3s;
}


::-webkit-scrollbar-thumb:hover {
    background: #ff6c9d;
}

/* Scrollbar corner */
::-webkit-scrollbar-corner {
    background: transparent;
}


.container{
    max-width:100%;
    margin:auto;
    background:white;
    padding:40px;
}

h1{
    font-size:1.2rem;
    margin-bottom:20px;
    color:#1c1c1c;
    margin-top:30px;
}

h2{
    margin-top:30px;
    font-size:1rem;
    color:#1c1c1c;
}

p{
    line-height:1.7;
    margin-top:10px;
    font-size:0.9rem;
}

ul{
    margin-top:10px;
    padding-left:20px;
    font-size:0.9rem;
}

li{
    margin-bottom:8px;
    font-size:0.9rem;
}

.footer{
    margin-top:30px;
    font-size:0.8rem;
    color:#666;
}
strong {color:#f00050;}

