* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    background-color: var(--bgMain);
    color: var(--textMain);
}

body {
    height: 100vh;
    /*width: 100vw;*/
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

main {
    flex-grow: 1;
}