*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body{
    background-color: gray;
}

/*anasayfanın temel düzeni*/

#header{
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 70px;
    box-sizing: content-box;
    background-color: rgb(42, 195, 255);
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#nav{
    text-align: center;
    position: relative;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 30px;
    box-sizing: content-box;
    background-color: orange;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#content{
    background-color: white;
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 1200px;
    box-sizing: content-box;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

#footer{
    margin-left: auto;
    margin-right: auto;
    width: 1200px;
    height: 30px;
    box-sizing: content-box;
    background-color: orange;
    border-left: 1px solid black;
    border-right: 1px solid black;
}

/*header kısmı*/

/*Logo*/

#logo{
    /* position: absolute; */
    text-decoration: none;
    font-size: 50px;
    margin-top: 3px;
    /* margin-left: 25px; */
    color: black;
    font-weight: bold;
    /* letter-spacing: 1px; */
}

/*nav kısmı*/

/*nav linkleri*/

#nav a{
    text-align: center;
    margin: 10px;
    text-decoration: none;
    font-size: 20px;
    color: black;
}

#homepage{
    position: relative;
    top: 4px;
}

#contact{
    position: relative;
    top: 4px;
}

#pixels{
    position: relative;
    top: 4px;
}

#hakkımda{
    position: relative;
    top: 4px;
}

/*Content Kısmı*/

#bilgiler{
    position: relative;
    width: 600px;
    height: 80px;
    top: 30px;
    left: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 10px 0 gray, 0 5px 10px 0 gray;
}

#bilgiler h2{
    position: relative;
    font-size: 35px;
    top: 20px;
    left: 50px;
}

#bilgicont{
    position: relative;
    width: 600px;
    height: 400px;
    top: 70px;
    left: 300px;
    border-radius: 15px;
    box-shadow: 0 5px 10px 0 gray, 0 5px 10px 0 gray;
}

#mail{
    position: relative;
    top: 55px;
    left: 50px;
    width: 500px;
    height: 60px;
    border: 3px solid black;
    border-radius: 50px;
}

#mail img{
    position: relative;
    width: 56px;
    height: 56px;
    top: -1.3px;
    left: -0.6px;
    border-radius: 50%;
}

#mail p{
    position: absolute;
    font-size: 17px;
    top: 17px;
    left: 70px;
}

#instagram{
    position: relative;
    top: 105px;
    left: 50px;
    width: 500px;
    height: 60px;
    border: 3px solid black;
    border-radius: 50px;
}

#instagram img{
    position: absolute;
    width: 80px;
    top: -3px;
    left: -13px;
}

#instagram p{
    position: absolute;
    font-size: 17px;
    top: 17px;
    left: 70px;
}

#bip{
    position: relative;
    top: 155px;
    left: 50px;
    width: 500px;
    height: 60px;
    border: 3px solid black;
    border-radius: 50px;
}

#bip img{
    position: absolute;
    width: 64px;
    top: -4.7px;
    left: -4.3px;
}

#bip h5{
    position: absolute;
    font-size: 18px;
    top: 15px;
    left: 70px;
}

/*Footer Kısmı*/

#footer p{
    color: black;
    font-weight: bold;
    padding-top: 5px;
    text-align: center;
}





















