@keyframes shimmer {
    0% { background-position: -50%; }
    100% { background-position: 150%; }
}

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

body {
    font-family: 'Roboto', sans-serif;
    background-color: #FAFAFA; /* Softer shade of white */
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    color: #333;
}
.container {
    text-align: center;
    padding: 20px;
    max-width: 600px;
    background-color: #1DA1F2; /* Twitter blue background */
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.container::after {
    content: '';
    position: absolute;
    top: 0; right: 0; bottom: 0; left: 0;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transform: translateX(-100%);
}
h1 {
    font-size: 2.5rem;
    color: #FFFFFF; /* White color for contrast */
    font-weight: 700; /* Roboto bold for headings */
}
p {
    font-size: 1.2rem;
    line-height: 1.6;
    color: #ECF3FD; /* Softer shade for text */
}
.secret {
    color: rgba(255, 170, 203, 0.73); /* Soft pink color */
    font-weight: bold;
}
.footer {
    margin-top: 40px;
    font-size: 0.9rem;
    color: #D1E3F8; /* Soft blue for footer */
}
.animate__animated {
    --animate-delay: 2s;
}