* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #e0e0e0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    animation: fadeIn 1s ease;
}

.message h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.message p {
    font-size: 1.2rem;
}

.logo img {
    width: 200px; /* Ajusta según el tamaño de tu logo */
    height: auto;
    animation: bounce 2s infinite;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Media Queries */
@media (max-width: 1200px) {
    .message h1 {
        font-size: 2.2rem;
    }

    .message p {
        font-size: 1.1rem;
    }

    .logo img {
        width: 180px; /* Ajusta según el tamaño de tu logo */
    }
}

@media (max-width: 992px) {
    .message h1 {
        font-size: 2rem;
    }

    .message p {
        font-size: 1rem;
    }

    .logo img {
        width: 160px; /* Ajusta según el tamaño de tu logo */
    }
}

@media (max-width: 768px) {
    .message h1 {
        font-size: 1.8rem;
    }

    .message p {
        font-size: 0.9rem;
    }

    .logo img {
        width: 140px; /* Ajusta según el tamaño de tu logo */
    }
}

@media (max-width: 576px) {
    .message h1 {
        font-size: 1.5rem;
    }

    .message p {
        font-size: 0.8rem;
    }

    .logo img {
        width: 120px; /* Ajusta según el tamaño de tu logo */
    }
}
