 body {
            font-family: 'Dosis', sans-serif;
            margin: 0;
            padding: 0;
            background: linear-gradient(to bottom, #ff5f6d, #ffc371);
            color: #333;
        }

        .container {
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            padding: 20px;
        }

        .container img {
            width: 80%;
            height: 80%;
            margin-right: 20px; /* Aralarında boşluk bırakmak için */
        }

        .app-info {
            width: 80%;
            text-align: left;
        }

        .app-info h1 {
            font-size: 2.5em;
            margin-bottom: 20px;
        }

        .app-info p {
            font-size: 1.2em;
            margin-bottom: 10px;
        }

         .app-info p:first-child {
                display: inline-block; /* İçeriği blok haline getir */
                background-color: #fff;
                padding: 10px 20px;
                border-radius: 20px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px; /* Altındaki boşluğu ayarla */
                font-size: 12px;
            }
        
        .download-buttons {
            display: flex;
            gap: 10px;
            margin-top: 20px;
        }

        .download-buttons img {
            height: 40px;
        }
        
        footer {
            background-color: #282c34;
            color: white;
            padding: 10px;
            text-align: center;
            width: 100%;
            position: fixed;
            bottom: 0;
            left: 0;
        }

        footer p {
            font-size: 0.9em;
            line-height: 20px;
        }
        
         .features {
            margin-top: 40px;
             margin-left: 100px;
            text-align: left;
        }

        .feature-item {
            background-color: rgba(255, 255, 255, 0.8);
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }

        .feature-item img {
            width: 50px;
            height: 50px;
            margin-right: 20px;
        }

        .feature-item p {
            margin: 0;
            font-size: 1.0em;
            line-height: 25px;
            
        }
        
        
        @media (max-width: 1024px) {
         
               body {
                font-family: Arial, sans-serif;
                margin: 0;
                padding: 0;
                background: linear-gradient(to bottom, #ff5f6d, #ffc371);
                color: #333;
            }

            .container {
                display: flex;
                flex-direction: column;
                text-align: center;
                padding: 20px;
                height: auto; /* Tam ekran yüksekliğini kaldır */
                justify-content: flex-start; /* En tepeden başlaması için */
            }

            .container img {
                width: 100%;
                height: auto;
                margin-bottom: 20px; /* Görselin altında boşluk bırak */
            }


            .app-info {
                max-width: 768px;
                text-align: left;
                margin-top: 20px; /* Metin ile fotoğraf arasına boşluk */
            }
            
            .app-info h1{
               font-size: 25px;
            }
            
            .app-info p{
               font-size: 18px;
            } 
            
           
            
            .app-info p:first-child {
                display: inline-block; /* İçeriği blok haline getir */
                padding: 10px 20px;
                border-radius: 20px;
                box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
                margin-bottom: 20px; /* Altındaki boşluğu ayarla */
                font-size: 12px;
            }
            .download-buttons {
                display: flex;
                justify-content: center; /* Düğmeleri yatayda ortala */
                gap: 10px;
                margin-top: 20px;
            }

            .download-buttons a {
                display: inline-block;
            }

            .download-buttons img {
                height: 40px;
                margin-top: 30px;
            }
            
             .features {
               
                margin-top: 40px;
                text-align: left;
                padding-bottom: 100px;
            }

            .feature-item {
                background-color: rgba(255, 255, 255, 0.8);
                border-radius: 10px;
                padding: 20px;
                margin-bottom: 20px;
                display: flex;
                align-items: center;
            }

            .feature-item img {
                width: 50px;
                height: 50px;
                margin-right: 20px;
            }

            .feature-item p {
                margin: 0;
                font-size: 1.0em;
            }
            
             footer {
                background-color: #282c34;
                color: white;
                padding: 10px;
                text-align: center;
                width: 100%;
                 height: auto;
                position: fixed;
                bottom: 0;
                left: 0;
            }

            footer p {
                font-size: 0.7em;
                line-height: 15px;
            }

            
        }