@import './base.css';

#app {
    min-height: 100vh;
}

.flex {
    display: flex;
}

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

.flex-center-justify {
    display: flex;
    justify-content: center;
}

.flex-center-align {
    display: flex;
    align-items: center;
}

.flex-row {
    display: flex;
    flex-direction: row;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.page-container {
    min-height: 100vh;
}

.card {
    border-radius: 6px;
    box-shadow: 0 8px 42px rgb(71 71 78 / 7%);
}