*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins', sans-serif;
    height:100vh;
    background:
        linear-gradient(rgba(0,0,0,0.65),
        rgba(0,0,0,0.75)),
        url('https://images.unsplash.com/photo-1492684223066-81342ee5ff30?q=80&w=1600');

    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    text-align:center;
    overflow:hidden;
}

.contenido{
    max-width:700px;
    padding:40px;
    animation:entrada 1.2s ease;
}

.logo{
    width:140px;
    margin-bottom:25px;
}

h1{
    font-size:48px;
    margin-bottom:20px;
    font-weight:700;
}

p{
    font-size:20px;
    line-height:1.7;
    color:#EAEAEA;
    margin-bottom:30px;
}

.estado{
    display:inline-block;
    padding:14px 28px;
    background:#ff7a00;
    border-radius:50px;
    font-weight:600;
    font-size:16px;
    box-shadow:0 8px 20px rgba(0,0,0,0.3);
}

.footer{
    margin-top:40px;
    font-size:14px;
    color:#cccccc;
}

@keyframes entrada{
    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

@media(max-width:768px){

    h1{
        font-size:34px;
    }

    p{
        font-size:17px;
    }

    .contenido{
        padding:20px;
    }

}