body {
    background-image: url('images/logo.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
}

.text-container {
        background-color: rgba(255, 255, 255, 0.7);
        padding: 20px;
}

@media only screen and (max-width: 600px) {
    /* Mobil cihazlar için özel stil tanımlamaları */
    .text-container {
        padding: 10px;
    }
}