* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    font-family: Arial, sans-serif;
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.door {
    position: absolute;
    top: 0;
    width: 50%;
    height: 100%;
    background-color: #01aac0;
    transition: transform 1s ease-in-out;
}

.door-left {
    left: 0;
    transform-origin: left center;
}

.door-right {
    right: 0;
    transform-origin: right center;
}

.logo-container {
    position: absolute;
    z-index: 10;
    opacity: 0;
    transform: scale(0);
    transition: transform 2s ease-in-out, opacity 4s ease-in-out;
}

.logo {
    width: 10vw;
    height: auto;
}

@media (max-width: 768px) {
    .logo {
        width: 6.25rem; /* 100px */
    }
}
