html,
body {
    min-height: 100% !important;
    margin: 0;
    padding: 0;
}

div.main {
    height: 100%;
    width: 100%;
    background-color: black;
}

div.header {
    height: 400px;
    background: url(../images/hakkimizdabcg.jpg);
    position: relative;
}

div.header h1 {
    font-size: 50px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
}

div.body {
    padding: 100px 150px;
}

div.body h1 {
    color: wheat;
    position: relative;
    left: 50%;
    display: inline-block;
    transform: translateX(-50%);
    padding: 0 100px;
}

div.body h1:before {
    content: "";
    position: absolute;
    height: 3px;
    width: 150px;
    background-color: wheat;
    left: -60px;
    top: 50%;
    transform: translateY(-50%);
}

div.body h1:after {
    content: "";
    position: absolute;
    height: 3px;
    width: 150px;
    background-color: wheat;
    right: -60px;
    top: 50%;
    transform: translateY(-50%);
}

p.yazi {
    color: white;
}

div.row {
    display: flex;
}

img.hakkmizda_icon {
    width: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
}

img.hakkmizda_icon2 {
    width: 25%;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

@media (max-width: 990px) {
    div.body {
        padding: 100px 5px;
    }
    div.body h1:before {
        display: none;
    }
    div.body h1::after {
        display: none;
    }
    div.body h1 {
        padding: 0;
        font-size: 25px;
    }
    p.yazi {
        font-size: 14px;
    }
    div.gizli {
        display: none;
    }
    div.row {
        display: block;
    }
}