/* RESPONSIVE AYARLARI*/
@media(max-width: 576px) {
    footer div {
        flex-direction: column;
    }
}
@media(min-width: 576px) and (max-width: 768px) {}
@media(min-width: 768px) and (max-width: 992px) {}
@media(min-width: 992px) and (max-width: 1200px) {}
@media(min-width: 1200px) {}



* {
    box-sizing: border-box;
    padding: 0px;
    margin: 10px 0px;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    background-color: white;
    color: black;
    margin: 20px auto;
    /* Kutuyu sağ ve soldan ortalar */
    width: 1200px;
}

section {
    background-color: white;
    color: black;
}

.top_li {
    background-color: darkslategray;
    color: black;
    list-style-type: none;
}






header a:link, a:visited {
    background-color: black;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline;
    border-radius: 10px;
    
    
}



header a:hover, a:active {
    background-color: blue;
    justify-content: center; 
}

nav a:link, a:visited {
    background-color: black;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline;
    border-radius: 10px;
    
    
}

nav a:hover, a:active {
    background-color: brown;
    justify-content: center;
}

ul {
    list-style-type: none;
}

li {
    display: inline-block;
}

a {
    background-color: #f44336;
    color: #fff;
    padding: 14px 25px;
    text-decoration: none;
    font-size: 16px;
}

  