* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: #000000; /* Logoyla tam uyumlu siyah */
    color: #ffffff;
    font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.container {
    width: 90%;
    max-width: 1000px;
}

/* Logo Büyütme */
.logo {
    width: 100%;
    max-width: 500px; /* Logoyu oldukça büyüttük */
    height: auto;
    margin-bottom: 60px;
}

h1 {
    font-size: 3rem; /* Daha büyük ve vurucu başlık */
    font-weight: 800;
    letter-spacing: 8px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* E-posta Alanı */
.contact-box {
    margin-top: 20px;
    padding: 20px;
    border-top: 1px solid #333; /* İnce, şık bir ayırıcı çizgi */
    display: inline-block;
}

.label {
    display: block;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
}

.email {
    color: #ffffff;
    font-size: 1.5rem; /* Daha görünür e-posta */
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.email:hover {
    color: #a0a0a0; /* Üzerine gelince logodaki gri tonuna döner */
}

/* Mobil cihazlar için uyumluluk */
@media (max-width: 768px) {
    h1 {
        font-size: 1.8rem;
        letter-spacing: 4px;
    }
    .logo {
        max-width: 300px;
    }
    .email {
        font-size: 1.2rem;
    }
}