html {
    height:100%;
}
body {
    background-image: url("/Assets/forest-bg.png");
    background-repeat: no-repeat;
    background-attachment:fixed;
    background-position: center;
    background-size: cover;
    min-height: 97%;
    display: flex;
    justify-content: center;
    align-items: center;
}
button {
    border: 0px;
}

.neighbors-holder {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0px 6px;
}
.site-button {
    width: 45%;
    margin: 0em;
}
.site-button img {
    width: 100%;
}

.background {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60em;
    width: 100%;
    flex-wrap: wrap;
}
.main-panel {
    flex-grow: 0;
    flex-shrink: 0;
    height: 38rem;
    width: 60rem;
    background-color: aliceblue;
    display: flex;
    align-items: center;
    padding: 0.5em;
    border-radius: 1em;
    position: relative;
    margin-top: -5em;
}
.panel-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 80%;
    height: 100%;
}
.panel-stuff{
    background-color: chocolate;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    overflow-y: scroll;
}

.title-panel {
    background-color: rgb(216, 134, 76);
    text-align: center;
    width: 100%;
    margin-top: 1em;
    border-radius: 2em;
}

.side-panel{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    width: 20%;
    height: 100%;
    background-color: bisque;
    flex-wrap: nowrap;
}
.side-tab, .side-title{
    width: 100%;
    height: 50px;
    margin: 0.5em 0em;
    background-color: rgb(247, 216, 178);
    display: flex;
    align-items: center;
    justify-content: center;
}
.side-tab:hover, .side-title:hover {
    background-color: rgb(226, 183, 131);
}
.side-tab:active, .side-title:active{
    background-color: rgb(134, 84, 18);
}

.side-title{
    justify-self: flex-start;
    height: 80px;
}

.tab-menu {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 16%;
    background-color: #fff4d6;
}
.tab-box {
    height: 100%;
    width: min(15em, 25%);
    margin: 0em 0.2em;
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-title {
    align-self: flex-start;
    justify-self: flex-start;
    height: 100%;
    width: min(15em, 25%);
    margin: 0em 0.2em;
    background-color: antiquewhite;
    display: flex;
    align-items: center;
    justify-content: center;
}
.tab-box:hover, .tab-title:hover {
    background-color: rgb(223, 205, 183);
}
.tab-box:active, .tab-title:active{
    background-color: rgb(104, 80, 49);
}

.content-button {
    background-color: brown;
    width: 95%;
    height: 3rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    border-radius: 1.5rem;
}
.content-button:hover {
    background-color: rgb(179, 98, 74);
}
.content-button:active {
    background-color: rgb(94, 22, 22);
}
.content-button img {
    height: 2.5rem;
    justify-self: flex-start;
    position: absolute;
    left: 0.5em;
}
.content-button .button-texts {
    display: flex;
    flex-direction: column;
}

#content {
    width: 100%;
    height: 100%;
    padding: 1em;
}
.content-table{
    width: 100%;
    border-collapse: collapse;
}
.content-table td,
.content-table th {
    border: 2px dotted brown;
}
.content-table tr td {
    width: auto;
    vertical-align: top;
}
.content-table h1,
.content-table h2,
.content-table h3,
.content-table h4 {
    margin-left: -1.2em;
}
.content-table tr:first-child th,
.content-table tr:first-child td {
    border-top: 0;
}
.content-table tr:last-child td {
    border-bottom: 0;
}
.content-table tr td:first-child,
.content-table tr th:first-child {
    border-left: 0;
}
.content-table tr td:last-child,
.content-table tr th:last-child {
    border-right: 0;
}

.column {
    width: 50%;
    height: 98.5%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}
.column .column-cell {
    border: 1px solid brown;
    width: 100%;
    text-align: center;
    overflow-y: scroll;
    border-bottom: 0px;
    border-right: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.column:last-of-type .column-cell {
    border-right: 1px solid brown;
}
.column .column-cell:last-of-type{
    border-bottom: 1px solid brown;
}
.column-cell p {
    text-align: justify;
    font-size: 0.8em;
    margin: 0em 1em;
}