html, body {
    height: 100%;
}
body {
    font-family: Consolas;
    font-size: 16px;
    background-color: white;
    margin: 1rem;
}
.main {
    background-color: whitesmoke;
    border: solid 2px rgb(61, 105, 74);
    margin: auto;
    padding-right: 1rem;
    padding-left: 1rem;
    padding-bottom: 1rem;
    min-height: 90%;
    width: 60%;
}
footer {
    height: 2rem;
}
.user-container {
    display: grid;
    justify-content: center;
    float: right;
    max-width: 15%;
    height: auto;
    row-gap: 10px;
}
.action-bar, .user-profile {
    box-sizing: border-box;
    width: 200px;
    height: auto;
    display: inline-grid;
    background-color: whitesmoke;
    border: solid 2px rgb(61, 105, 74);
    justify-items: center;
    padding: 5px;
    row-gap: 10px;
}
.rule-container {
    box-sizing: border-box;
    background-color: whitesmoke;
    border: solid 2px rgb(61, 105, 74);
    float: left;
    max-width: 15%;
    width: 200px;
    height: auto;
    padding: 5px;
}
.rule-container ul {
    padding-left: 1rem;
    list-style-position: inside;
}
h1 {
    font-family: Consolas;
    text-align: center;
    font-size: 32px;
}
section h2 {
    font-family: Consolas;
    font-size: 20px;
    font-weight: bold;
}
.search-bar, .center {
    text-align: center;
}
.search-bar input {
    border: solid 2px rgb(61, 105, 74);
    padding: 5px;
    width: 240px;
    height: 16px;
}
button {
    border: solid 2px rgb(61, 105, 74);
    text-align: center;
    padding: 5px;
    min-width: 100px;
    height: 30px;
}
button, input {
    font-family: Consolas;
    font-size: 16px;
}
a {
    color: rgb(57, 109, 73);
    font-weight: bold;
}
.title-text {
    line-height: 2;
    font-family: Consolas;
    font-size: 24px;
    font-weight: bold;
}
.entry-data {
    color: rgb(70, 70, 70);
    padding-bottom: 6px;
}