body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    color: #222222;
    background-image: url('background-image.jpeg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 20px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    font-size: 36px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: bold;
}

p {
    font-size: 18px;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
    font-weight: bold;
}

/* Mobil uyumluluk */
@media (max-width: 768px) {
    .container {
        padding: 30px 15px;
        margin: 20px;
    }
    h1 {
        font-size: 28px;
    }
    p {
        font-size: 16px;
    }
}
