.wrapper {
    width: 100vw;
    height: 100vh;
    position: relative;
}

#opening {
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 999;
    position: fixed;
    transition: all 1s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    background-color: var(--color-bluege);
}

#opening.finish {
    opacity: 0;
    visibility: hidden;
}

#opening svg {
    width: 282px;
}

.topContent {
    width: 100vw;
    height: 100vh;
}