@import url("/utils.css");

/* Dashboard container grid holding the header and the buttons */
.db-container {
    width: fit-content;
    max-width: 100%;
    margin: 100px auto 0;

    display: grid;
    grid-template-rows: 1fr 210px;
    row-gap: 20px;
}

/* Dashboard header holding the text art */
.db-header {
    font-size: 20px;

    display: flex;
    flex-direction: row;
    justify-content: center;
}

