/* Genel stil ayarları */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    font-family: Arial, sans-serif;
}

/* Arkaplan resminin ve container'ın düzeni */
body {
    background-image: url('background.jpg'); /* Arka planda kullanılacak resmin yolu */
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

/* Logo stili */
.logo {
    width: 450px;
    margin-bottom: 20px;
}

/* Başlık stili */
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

/* İletişim bilgileri */
.contact-info {
    font-size: 1.2rem;
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .logo {
        width: 120px;
    }

    h1 {
        font-size: 2rem;
    }

    .contact-info {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .logo {
        width: 300px;
    }

    h1 {
        font-size: 1.5rem;
    }

    .contact-info {
        font-size: 0.9rem;
    }
}
