* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    height: 100vh; /* Sayfanın yüksekliği %100 olacak şekilde ayarlanmış */
    display: flex;
    justify-content: center;
    align-items: center;
}

.background {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("images/background.jpeg");
    background-size: cover;
    background-position: center;
    z-index: -1; /* Arka planın alt katmanda kalmasını sağlar */
    animation: blurBackground 2s forwards;
}

.container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    width: 100%;
}

.under-construction h1 {
    font-size: 48px;
    font-weight: bold;
    color: #333;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
    background-color: rgba(255, 255, 255, 0.7);
    padding: 20px 40px;
    border-radius: 10px;
    z-index: 2; /* Yazıyı ön planda tutacak z-index */
    position: relative; /* Yine de pozisyonunu netleştirmek için relative kullanılabilir */
}

/* @keyframes blurBackground { */
    /* 0% { */
        /* filter: blur(0); /* Başlangıçta net */ */
    /* } */
    /* 100% { */
        /* filter: blur(4px); /* 2 saniye sonra bulanık */ */
    /* } */
/* } */
