@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.centerLogo  {
    opacity: 0;
    animation: slideInFromLeft 0.5s ease-in-out forwards;
}


body {
    font-family: Arial, sans-serif;
    font-size: 16px;
    margin: 0;
}

.hide {
    display: none;
}

.mainDiv {
    width: 100%;
    height: 100vh;
    background-color: #121212;
    display: flex;
    justify-content: center;
    align-items: center;
}

.centerLogo {
    margin-top: 100px;
    text-align: center; 
    width: 50%;
}

.centerLogo img {
    max-width: 100%; 
    max-height: 100%;
}

@media (max-width: 1200px) {
    .centerLogo{
        width: 60%;
    }
}

@media (max-width: 800px) {
    .centerLogo{
        width: 80%;
    }
}

