/*
** sleeper/static/sleeper.base.css
*/

* {
    font-family: "Source Code Pro";
}

body {
    margin: 0;
}

main {
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    align-items: center;
    padding: 64px;
}

@media only screen and (max-width: 768px) {
    main {
        padding: 40px;
    }
}
