body {
    margin: 0;
    padding: 0;
    height: 100vh;
    text-align: center;
    background-color: #353535;
    color: #0e0e0e;

    font-family: "DM Serif Text", serif;
    font-weight: 400;
    font-style: normal;

    user-select: none;
    -webkit-user-drag: none;
}

#main-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 100vh;
}

html {
    -ms-overflow-style: none;
    scrollbar-width: none;
    /* overflow: hidden; */
}

html::-webkit-scrollbar {
    display: none;
}