body, html {
    margin: 0;
}

#wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: black;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}


#logo-wrapper {
    width: 500px;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

#logo {
    max-width: 70vw;
    max-height: 70vh;
    object-fit: contain;
    aspect-ratio: 1 / 1;
}