body {
    margin: 0;
    padding: 0;
    color: #fff;
}

/* Animaciones de entrada */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}
.wrap {
    background-image: url('bghome.webp');
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    display: flex;
    .center{
        margin: auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 80vh;
        width: 80%;
        text-align: left;
        .logo{
            width: 300px;
            animation: fadeInScale 1s ease-out 0.3s both;
        }
        h1{
            font-size: 7rem;
            margin: 0;
            padding: 0;
            font-family: "Poppins", sans-serif;
            font-weight: 500;
            line-height: 135px;
            margin-top: 50px;
            margin-bottom: 30px;
            animation: fadeInUp 1s ease-out 0.8s both;
        }
        p{
            font-size: 32px;
            margin: 0;
            padding: 0;
            font-family: "Lexend", sans-serif;
            font-weight: 200;
            animation: fadeInUp 1s ease-out 1.3s both;
        }
    }
}

@media (max-width: 992px) {
    .wrap {
        .center {
            height: auto;
            width: 90%;
            .logo {
                width: 250px;
            }
            h1 {
                font-size: 5rem;
                line-height: 70px;
            }
            p {
                font-size: 24px;
            }
        }
    }
}
@media (max-width: 768px) {
    .wrap {
        .center {
            height: auto;
            width: 90%;
            .logo {
                width: 200px;
            }
            h1 {
                font-size: 3rem;
                line-height: 50px;
                margin-top: 20px;
                margin-bottom: 20px;
            }
            p {
                font-size: 18px;
            }
        }
    }
}
@media (max-width: 480px) {
    .wrap {
        .center {
            height: auto;
            width: 90%;
            .logo {
                width: 150px;
            }
            h1 {
                font-size: 2rem;
                line-height: 40px;
                margin-top: 10px;
                margin-bottom: 10px;
            }
            p {
                font-size: 16px;
            }
        }
    }
}
