body {
    margin: 0;
    padding: 0;
    background: #03050A;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-family: Arial, sans-serif;
}

.welcome {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}

.logo {
    width: 240px;
    cursor: pointer;
    transition: transform 0.35s ease, opacity 0.35s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo.zoom-out {
    transform: scale(2);
    opacity: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
}
