    .landing-page {
        margin: 2vw 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 30px;
        width: 100%;
    }
    
    .hero-section {
        width: 100%;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .hero-section h1 {
        font-weight: 800;
        color: #fff;
        text-align: center;
    }

    .hero-image img {
        width: 600px;
        height:600px;
        object-fit: cover;
        opacity: 0;
        transform: translateX(100%);
        animation: slideFromRight 0.8s ease-out forwards;
    }

    .description {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        max-width: 50%;
        text-align: justify;
        transform: translateY(100%);
        animation: slideFromTop 0.8s ease-out forwards;
    }

    .description p {
        color: #eee;
    }

    /* Responsives */
    @media screen and (max-width:768px) {
        
        .hero-section {
            flex-direction: column;
            gap:20px;
        }
        .description {
            max-width: 100%;
        }
    }