@import 'variables';

body {
    color: $bodyColor;
    font-family: $font;
    font-size: $fontSize;
    min-height: 100vh;

    .app-container {
        min-height: 100vh;

        .content-container {
            display: flex;
            flex: 1 1 auto;
            height: 100vh;
        }

        .content {
            position: relative;
            flex: 1 1 auto;
            flex-direction: row;
        }
    }

    background: $backgroundColor;
}
