body {
            margin: 0;
            height: 100vh;
            display: flex;
            justify-content: center;
            align-items: center;     
        }

        .container {
            display: flex;
            flex-direction: column; 
            align-items: center;   
            gap: 60px;              
        }

        .container img {
            max-width: 90%;
            height: auto;
        }
        .home {
            cursor: pointer;
            transition: transform 0.2s;
        }
        .home:hover {
            transform: scale(1.05);
        }