body {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    background-color: #000;
    overflow: hidden;
    margin: 0;
}

.container {
    position: relative;
    width: 100%;
    max-width: 600px;
    text-align: center;
}

.image {
    width: 50%;
    opacity: 0;
    animation: zoomOut 2s ease-in-out forwards, blink 1.5s infinite alternate;
}

@keyframes zoomOut {
    0% { transform: scale(0.1); opacity: 0; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes blink {
    0% { opacity: 1; }
    50% { opacity: 0.7; }
    100% { opacity: 1; }
}

.text {
    color: white;
    font-size: 24px;
    font-family: Arial, sans-serif;
    font-weight: bold;
    text-shadow: 2px 2px 5px rgba(255, 255, 255, 0.5);
    margin-top: 20px;
    animation: fadeIn 2s ease-in-out;
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}
