*{
    margin:0;
    padding: 0;
    box-sizing: border-box;
}

html{
    font-size:11px;
    
    font-family: 'Raleway', sans-serif;
    scroll-behavior: smooth;
}

body{
    font-size:1.6rem;
    background-color: #202020;
    color:white;
   
}

a{
    color:white;
    text-decoration: none;
}

.sayfa-padding{
    padding-right: 10rem !important;
    padding-left:10rem !important;
}

.kisim-title{
    font-size: 5rem;
    font-weight: bold;
    margin-top:10rem;
    background-color: #383838;
    text-align: center;
}

#loading{
    position: fixed;
    top:0;
    left:0;
    height: 100vh;
    width: 100%;
    z-index: 101;
    background-color:#202020;
    transition: all .4s ease;
    opacity: 1;
}

#loading.degistir{
    opacity: 0;
    z-index: -100;
}


@media (max-width: 1300px) {
    .sayfa-padding{
        padding-right: 8rem !important;
        padding-left:8rem !important;
    }
}


@media (max-width: 992px) {
    .sayfa-padding{
        padding-right: 5rem !important;
        padding-left:5rem !important;
    }
}

@media (max-width: 576px) {
    .sayfa-padding{
        padding-right: 3rem !important;
        padding-left:3rem !important;
    }
}