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

.container {
    text-align: center;
}

.logo-container {
    transform-origin: center;
    transition: transform 1s ease-in-out;
    margin-bottom: 40px; 
}

.logo-container.pulsate {
    transform: scale(1.05); 
}

.text {
    font-family: Arial, sans-serif; 
    font-size: 20px; 
    font-weight: bold;
    color: #333; 
}

