html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background-color: #1e1e1e;
    color: white;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-user-drag: none;
}


#nav {
    z-index: 1;
    display: flex;
    position: fixed;
    top: 0;
    height: 80px;
    width: 100%;
    background-color: #0c0c0c;
    transition: 300ms;
}

#nav-cont {
    display: flex;
    justify-content: end;
    align-items: center;
    
}

#logodiv {
    width: 20%;
    display: flex;
    align-items: center;
}

#logo {
    justify-self: right;
    padding: 10px 0;
    height: 60px;
}
#logo:hover {
    cursor: pointer;
}

.nav-links {
    padding: 10px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    color: white;
}
.nav-links:hover {
    cursor: pointer;
}


#cikis-div {
    height: 80px;
}




.symbol {
    width: 35px;
    height: 35px;
    margin: 10px;
}

#bottombar {
    background-color: #0c0c0c;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.bottom-cont {
    margin: 4% 0;
}

.bttm-box {
    display: flex;
    align-items: center;
}

.bttm-links {
    text-decoration: none;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.map-title {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    padding: 10px 0;
}
.map-title:hover, .map-link:hover {
    cursor: pointer;
}

.map-link {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    padding: 5px 15px;
}



@media (min-width: 800px) {

    #nav {
        justify-content: center;
    }

    #nav-cont {
        width: 50%;
    }

    #bottombar {
        width: 70%;
        padding: 0 15%;
    }

    .content {
        width: 70%;
        margin: 0 15%;
    }

}


@media (min-width: 600px) and (max-width: 800px) {

    #nav {
        justify-content: center;
    }

    #nav-cont {
        width: 60%;
    }
    
    #logodiv {
        width: 30%;
    }

    .content {
        width: 90%;
        margin: 0 5%;
    }

}


@media (max-width: 600px) { 

    #nav {
        justify-content: space-between;
    }
        
    .nav-links {
        padding: 7px;
        font-size: 14px;
        font-family: 'Poppins', sans-serif;
        color: white;
    }
    #nav-hakkimizda, #anasayfa {
        display: none;
    }

    #logodiv, #nav-cont {
        padding: 0 10px;
    }

    #bottombar {
        flex-direction: column;
    }
    
    #bttm2 {
        display: none;
    }
    
    .content {
        width: 90%;
        margin: 0 5%;
    }
}