#logo-container {
    position: fixed;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    z-index: 999999999;
    animation: zoomInOut 1s ease-in-out forwards;
}
@keyframes zoomInOut {
    100% {
        transform: scale(0.3);
        opacity: 1;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }

}

#main-content {
    display: none;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
@keyframes squareReveal {
    0% {
        opacity: 0;
        clip-path: inset(100% 100% 100% 100%);
    }
    100% {
        opacity: 1;
        clip-path: inset(0% 0% 0% 0%);
    }
    
}