*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    font-family: sans-serif;
    text-decoration: none;
    text-transform: capitalize;
}

body{
    min-height: 100vh;
    background: url(resimler/background.png) no-repeat;
    background-size: 100%;
    background-position: center;
}

header{
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #ffffff;
    box-shadow: 0 5px 10px rgba(0,0,0,.1);
    padding: 10px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 1000;
}

header .logo{
    font-weight: bolder;
    font-size: 25px;
    color: #333;
}

header .navbar ul{
   list-style: none; 
}

header .navbar ul li{
    position: relative;
    float: left;
}

header .navbar ul li a{
    font-size: 20px;
    padding: 20px;
    color: #333;
    display: block;
}

header .navbar ul li a:hover{
    background: #333;
    color: #ffffff;
    border-radius:  2px;
}

.h1-anasayfa{
text-align: center;
padding-top: 250px;
color: #ffffff;
font-weight: bolder;
font-size: x-large;
}

.discord{
    text-align: center;
    background: #333;
    width: 100px;
    height: 30px;
    margin-left: 630px;
    margin-top: 30px;
    padding-top: 6px;
    border-radius: 4px;
}

.discord-btn{
    color: #ffffff;
    font-weight: bolder;
    text-decoration: none;
}

.community{
    text-align: center;
    background: #333;
    width: 100px;
    height: 30px;
    margin-left: 500px;
    margin-top: -30px;
    padding-top: 6px;
    border-radius: 4px;
}

.community-btn{
    color: #ffffff;
    font-weight: bolder;
    text-decoration: none;
}

.instagram{
    text-align: center;
    background: #333;
    width: 100px;
    height: 30px;
    margin-left: 760px;
    margin-top: -30px;
    padding-top: 6px;
    border-radius: 4px;  
}

.instagram-btn{
    color: #ffffff;
    font-weight: bolder;
    text-decoration: none;
}



