body {
    width: 100vw;
    height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: var(--background);
}

.container {
    width: 20vw;
    height: 40vh;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: start;
}

.logo {
    width: 100%;
    height: 50%;

    display: flex;
    align-items: center;
    justify-content: center;
}

.table-of-contents {
    width: 100%;
    height: 50%;

    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;

    border-radius: 5px;
    border: 1px solid var(--border);
}

.table-of-contents > div {
    text-align: center;
}