@media (min-width: 1024px) {
    .illustration img {
        width: 500px;
    }
}





@media (max-width: 768px) {

    .logo img {
        width: 180px;
    }

    .illustration img {
        width: 400px;
    }

    .content h1 {
        font-size: 2rem;
        line-height: 40px;
    }

    .content p {
        font-size: 14px;
    }

}

@media (max-width: 425px) {
    .desktop-background img, .mobile-background img{
        position: absolute;
        width: 100%;
        height: 100%;
        z-index: -2;
    }
    
    .desktop-background img {
        display: none;
    }

    .mobile-background img {
        display: block;
        width: 100%;
        height: 50%;
    }

    .btn {
        margin: 0 auto;
    }

    main {
        padding: 50px 0;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    main .hero-section {
        flex-direction: column;
        gap: 0;
    }

    main .hero-section .content {
        width: 350px;
        text-align: center;
    }

    .content h1 {
        font-size: 2rem;
        line-height: 40px;
    }

    .content p {
        font-size: 14px;
    }

    .logo img {
        width: 150px;
    }

    .illustration img {
        width: 250px;
    }

    .social-links {
        margin-top: 80px;
        font-size: 15px;
    }
}

@media (max-width: 320px) {
    .logo img {
        width: 150px;
    }

    .illustration img {
        width: 250px;
    }
}