@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-style: normal;
  }

  * {
    box-sizing: border-box;
    text-decoration: none;
  }

  :root {
    --renk1:#02182B;
    --renk2:#D7263D;
  }

body {
    padding: 0px;
    margin: auto 0;
}

nav {
    height: 60px;
    width: 100%;
    background-color:var(--renk1);
    position: fixed;
    top: 0;
    z-index: 100 !important;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px black;
}

nav > ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap:50px;
    width: fit-content;
    padding: 0px;
}

nav > ul > li {
    display: inline-block;
}

nav > ul > li > a {
    color:white;
    font-size: 20px;
    letter-spacing: 3px;
}

nav > ul > li > a:hover {
    background-color: transparent !important;
    color:white !important;
}

@media only screen and (max-width:600px) {


    nav {
        height: 60px;
        width: 100%;
        background-color:var(--renk1);
        position: fixed;
        top: 0;
        z-index: 100 !important;
        display: flex;
        justify-content: center;
        align-items: center;
        box-shadow: 0 0 20px black;
    }
    
    nav > ul {
        list-style: none;
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap:5px;
        width: fit-content;
        padding: 0px;
    }
    
    nav > ul > li {
        display: inline-block;
    }
    
    nav > ul > li > a {
        color:white;
        font-size:3vw;
        letter-spacing: 3px;
    }
    
    nav > ul > li > a:hover {
        background-color: transparent !important;
        color:white !important;
    }
    

    
}