/*This file is only for styling on the homepage of the website. */
.list-descriptor-p {
    margin: 5px;
}
.body-container {
    margin: 0.5rem;
    display: flex;
    flex-direction: column;
    column-gap: 0px;
    justify-content: space-between;
}
.header-box {
    display: flex;
    justify-content: center;
    flex-direction: row;
}
.bevel-button {
    border: 10px ridge darkgray;
    background-color: slategray;
    padding: 0.5rem;
    display: table-cell;
    vertical-align: middle;
    font-size: 16px;
}
.bevel-button:hover {
    background-color: lightgray;
}
.bevel-button:hover p {
    color: black;
}
.list-container {
    margin: 20px;
    padding: 2px;
    border: 2px solid grey;
}
.list-box {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    padding: 10px;
    column-gap: 10px;
    margin: 5px;
}
.header-navbar {
    margin: 0px;
    padding: 0px;
}
.header-item {
    list-style: none;
    display: inline-block;
    padding: 2px;
}
.header-item:not(:first-child):before {
    content: "| ";
}
