:root {
    --color-canvas: #f4f2ec
}

body {
    background-color: var(--color-canvas);
    color: black;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100dvh;
    margin: 0;
    width: 100vw;
    transition: all 0.6s ease-in-out;

}

#logo {
    opacity: 0;
    min-width: 220px;
    min-height: 220px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 1s ease-in-out;
}

#logo.loaded {
    opacity: 1
}