* {
    padding: 0px;
    margin: 0px;
}



body {
    height: 100vh;
    font-family: "Roboto";
    background-color: #12346b;
}


html::-webkit-scrollbar {
    width: 0.8rem;
    background-color: #fff;

}

html::-webkit-scrollbar-thumb {
    background-color: black;
    border-radius: 30rem;
}

nav {
    width: 75%;
    display: flex;
    background-color: #f8992cd6;

    justify-content: center;
    padding: 0 7%;
    margin: 2rem 7%;
    border-radius: 30rem;
    box-shadow: 0px 0px 17px -2px rgba(0, 0, 0, 0.75);
    /* ?navbar'ın site boyunca scrolla beraber hareket etmesi için kullanılır */
    position: fixed;
    top: 0;
    z-index: 3;
    height: 70px;
}

nav .navbar-item {
    display: flex;
    border-radius: 10%;
    padding: 0 10px;
    width: 150px;
    height: 60px;
    margin-top: auto;
    margin-bottom: auto;

}


nav .navbar-item ul {
    list-style-type: none;
}

nav .logo img {
    height: 30px;
    width: 30px;
    border-radius: 30%;
    margin-right: 20px;
    margin-top: 40%;
}

nav ul li {
    margin-top: 40%;
}

nav ul li a {
    text-decoration: none;
    border-radius: 30%;
    color: rgb(0, 0, 0);
    font-size: 20px;
    transition: 0.5s;
    text-transform: uppercase;

}

nav ul li a:hover {
    font-weight: bold;
    color: #fff;
}

 #btn{
    font-size: 30px;
    cursor: pointer;
    width: 500px;
    height: 100px;
    position: absolute;
    top: 20%;
    right: 37%;
    
    color: black;
}
#zone{
    border-radius: 0.5%;
    width: 1000px;
    height: 400px;
    position: absolute;
    top: 40%;
    right: 25%;
    background-color: #fff;
    
}

#question {
    color: rgb(0, 0, 0);
    
}



#zone #buttons button {
    color: rgb(0, 0, 0);
    margin-top: 20px;
    margin-left: 20px;
    padding: 10px 20px;
    background-color: orange;
    transition-duration: 200ms;
    border: black;
    border-radius: 2px;
    
}

#zone #buttons button:hover {
    background-color: rgb(255, 196, 145);
    border: black;
}

#zone .soru{
    padding: 20px 20px;
}
