* {
    margin: 0;
    padding: 0%;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    background-color: #212121;

}

body {
    font-family:'Times New Roman', Times, serif;
    display: flex;
    flex-direction: column;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    width: 100%;
}
a{
    text-decoration: none;
}
#body {
    display: flex;
    user-select: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -o-user-select: none;
    width: 100%;
    background-color: #212121;

}
#nav-bar{
    background-position: center;
    height: 100vh; /* Yüksekliği tam ekran yapar */
    width: 20%; /* Genişliği tam ekran yapar */
    display: flex;
    text-align: center;
    padding: 20px;
    background-color: #212121;
}
.nav-bar-content{
    display: flex;
    flex-direction: column;
    width: auto;
    height: auto;
    justify-content:space-between;


}
.logo{
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: auto;
    align-items: center;
}
.logo img{
    display: flex;
    justify-content: center;
    width: 50px;
}
.page-button{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: auto;
    align-items: flex-start;
}
.page-button a{
    display: flex;
    text-decoration: none;
    color: #a6a6a6;
    line-height: 35px;
    text-align: left;
    width: 100%;
    font-size: 25px;
    transition: 0.4s;
    padding: 15px 0px 15px 0px;

} 
.page-button a:hover{
    text-decoration: none;
    color: #FFFFFF;
    } 
footer a {
    display: flex;
    color: #a6a6a6;
    font-size: 20px;
    padding-bottom: 20px;
}
footer a:hover{
    display: flex;
    color: #FFFFFF;
    text-decoration: none;
    
}
footer p{
    color: #a6a6a6;
    font-size: 15px;
    text-align: left;
}
footer .uyari{
    padding-top: 10px;
    color: #a6a6a6;
    font-size: 15px;
    text-align: left;
}

#content-wrapper{
    background-image: url("../image/pexels-matthiaszomer-618158.jpg"); /* Arka plan görselinizin yolu */
    filter: grayscale(100%);
    background-size: cover;
    background-position: center;
    height: 100vh; /* Yüksekliği tam ekran yapar */
    width: 80%; /* Genişliği tam ekran yapar */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: left;
    color: white;
    text-align: center;
    padding: 20px;
}
.border{
    margin-left: 10%;
    margin-bottom: 3%;
    display: block;
    width: 450px;
    border-radius: 2px;
    height: 4px;
    background-color: #4c1216;
}
#content-wrapper h1{
    color: black;
    display: flex;
    justify-content: left;
    width: auto;
    margin-left: 10%;
    font-size: 35px;
    text-align: left;
}
#content-wrapper p{
    color: black;
    display: flex;
    width: 35%;
    align-items: end;
    margin-top: 1%;
    margin-left: 10%;
    font-size: 20px;
    text-align: justify;
    
}
#content-wrapper .end{
    display: flex;
    width: 33%;
    align-items: end;
    justify-content: flex-end;
    margin-top: 1%;
    margin-left: 10%;
    font-size: 20px;
    text-align: left;
}

@media screen and (min-width: 950px) {
    .off-screen-menu{
        display: none !important;
    }
    nav{
        display: none !important;
    }

   
    
}