@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(149deg, rgba(86,90,97,1) 0%, rgba(37,39,45,1) 100%);
    #background: linear-gradient(to right, #565a61, #25272d); /* De dorado a un tono dorado más claro */
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    text-align: center;
    padding: 20px;
}

.container {
    background: #25272d;
    backdrop-filter: blur(10px);
    color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    max-width: 400px;
}

.logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.icon {
    font-size: 50px;
    animation: bounce 1.5s infinite alternate;
}

@keyframes bounce {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-10px);
    }
}

h1 {
    font-size: 24px;
    margin: 15px 0;
}

p {
    font-size: 16px;
    margin-bottom: 10px;
}

.countdown {
    font-size: 18px;
    font-weight: bold;
    margin: 15px 0;
}

.footer {
    font-size: 14px;
    opacity: 0.8;
}
