

section.main {
    /* dimensions */
    padding: 1em;
    height: 100vh;
    width: 100vw;

    /* display */
    background-color: var(--color-bg-1);

    /* flex, centering */
    display: flex;
    flex-direction: column;

    align-items: center;
    justify-content: center;
}

.main h1 {
    font-size: xxx-large;
    margin: 1vw;
}

.main p {
    margin: 1vw
}

.buttons {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

