html,
body,
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    width: 100%;
    min-height: 100dvh;
    color: #ffffff;
    background-color: #000000;
}

div {
    display: flex;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

#logo {
    width: 256px;
    height: 256px;
}

h1 {
    height: 0;
    width: 0;
    line-height: 0;
    color: transparent;
    visibility: hidden;
    opacity: 0;
}
