/* @import url('https://fonts.googleapis.com/css2?family=Frank+Ruhl+Libre:wght@300..900&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

#content {
    padding: 50px 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-family: "Open Sans", sans-serif;
}

/* #blogresim img {
    width: 60vw;
    height: 40vh;
    margin-bottom: 40px;
    object-fit: cover;
    border-radius: 5px;
} */

#blogyazi {
    font-size: 17.5px;
    font-weight: 300;
    width: 70vw;
    text-align:start;
}

footer {
    position: fixed;
    bottom: 0px;
    width: 100vw;
}

/*Tablet*/
@media screen and (max-width:1150px) {
    #content {
        flex-direction: column;
        justify-content: center;
        padding: 50px;
    }

    /* #blogresim img {
        width: 60vw;
        height: 40vh;
        object-fit: cover;
        border-radius: 5px;
    } */

    h3 {
        text-align: center;
    }

    #blogyazi {
        margin: 10px 4%;
        text-align:start;
    }

    footer {
        position: fixed;
        bottom: 0px;
        width: 100vw;
    }
}

/*Telefon*/
@media screen and (max-width:900px) {
    #blogyazi {
        margin: 10px 3%;
    }
    footer {
        position:initial;
        bottom: 0px;
        width: 100%;
    }
}