/* Sayfa stilini sıfırla */
body {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.container {
    max-width: 600px;
    margin: auto;
    padding: 40px;
    text-align: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    animation: fadeUp 1s forwards;
}

/* Header stilleri */
.header {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50px; /* Header'ın yüksekliğini artırdık */
    left: 0;
    right: 0;
}

.logo {
    width: 70px; /* Logo boyutunu artırdık */
    height: 70px; /* Logo boyutunu artırdık */
    margin-right: 10px;
}

.site-name {
    margin: 0;
    padding: 0;
    font-size: 48px; /* Site ismi font boyutunu artırdık */
}

/* Animasyon ve diğer stiller devam eder... */
@keyframes fadeUp {
    0% {
        opacity: 0;
        transform: translateY(-50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

h1 {
    font-size: 36px;
    margin-bottom: 20px;
}

p {
    font-size: 18px;
    margin-bottom: 30px;
}

footer {
    background-color: #000;
    padding: 20px;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    text-align: center;
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.container:hover {
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px rgba(255, 255, 255, 0.1);
}

@media screen and (max-width: 600px) {
    .container {
        padding: 20px;
    }
    h1 {
        font-size: 24px;
        margin-bottom: 10px;
    }
    p {
        font-size: 16px;
        margin-bottom: 20px;
    }
    footer {
        font-size: 12px;
    }
}
