#blogcont {
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)),
        url("/assets/grass.png");
    background-size: 48px;
}
#blog-flex-wrapper{
    display:flex;
    flex-direction:column;
    justify-content:space-around;
    gap:25px;
}
#blog-wrapper{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:8px;
}
#blog-header{
    font-family: 'mythMono';
    font-size: 32px;
    color: white;
    background-color: #24a387;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    border-radius: 4px;
    text-align:center;
    text-justify:center;
    box-shadow: 0px 0px 8px #222;
    text-shadow: 1px 1px 2px #222;
    width:100%;
}
#blog-header span{
    margin: 4px 0px;
}
#blogpost {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
}

#posts {
    display: flex;
    flex-direction: column;
    gap: 8px;
    overflow-y: scroll;
    max-height:600px;
    padding:8px;
}

.post-card {
    display: flex;
    flex-direction: column;
    background-color: #24a387;
    width: max-content;
    padding: 8px;
    margin: 0;
    border-radius: 4px;
    cursor: pointer;
    max-width: 90%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    gap: 6px;
    box-shadow: 0px 0px 8px #222;
}

.post-title h2,
p {
    margin: 0;
}

.post-title {
    text-shadow: 1px 1px 2px #222;
    color: white;
    font-size: 20px;
}

.post-summary {
    background-color: white;
    font-family: sans-serif;
    padding: 14px 8px;
    border-radius: 4px;
    box-shadow: 0px 0px 8px #777;
    color: #222;
}

.post-meta {
    text-shadow: 1px 1px 2px #222;
    color: white;
    font-size: 16px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    width: fit-content;
    padding: 2px 4px;
    box-shadow: 0px 0px 8px #777;
}

#post-wrapper {
    display: flex;
    flex-direction: column;
    background-color: #24a387;
    width: 100%;
    padding: 8px;
    margin: 0;
    border-radius: 4px;
    cursor: pointer;
    max-width: 100%;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    gap: 6px;
    box-shadow: 0px 0px 8px #777;
}

#post h1 {
    margin: 0;
}

.post-author {
    text-shadow: 1px 1px 2px #777;
    color: white;
    margin: 0 0 8px 4px;
    font-size: 18px;
}

.post-body {
    background-color: white;
    font-family: sans-serif;
    padding: 14px 8px;
    border-radius: 4px;
    box-shadow: 0px 0px 8px #c7c7c7;
    line-height: 24px;
    font-size: 16px;
    color: #222;
    text-wrap: balance;
}

#return-button {
    text-shadow: 1px 1px 2px #777;
    color: white;
    font-size: 24px;
    background-color: #ec7e2f;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    padding: 4px;
    box-shadow: 0px 0px 8px #777;
    border-radius: 4px;
}

#FAQ-wrapper{
    display:flex;
    flex-direction:column;
    width:100%;
    gap:8px;
    align-items:center;
    margin-bottom:12px;
}
#FAQ-header{
    font-family: 'mythMono';
    font-size: 32px;
    color: white;
    background-color: #24a387;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    border-radius: 4px;
    text-align:center;
    text-justify:center;
    box-shadow: 0px 0px 8px #222;
    width:100%;
    text-shadow: 1px 1px 2px #222;
}
#FAQ-header span{
    margin: 4px 0px;
}

#FAQ {
    display: flex;
    flex-direction: column;
    align-items:center;
    gap:16px;
    padding:8px;
    max-width:80%;
}
.Q{
    background-color:white;
    border-radius:4px;
    padding:8px;
    box-shadow: 0px 0px 8px #222;
    background-color: #ec7e2f;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    color:white;
    text-shadow: 1px 1px 2px #222;
    font-size:28px;
    text-wrap-style:balance;
    text-align:center;
    width: 90%;
}
.Q b{
    font-size:28px;
}
.A{
    background-color:white;
    border-radius:4px;
    padding:8px;
    box-shadow: 0px 0px 8px #222;
    background-color: #24a387;
    background-image: linear-gradient(rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0.0));
    color:white;
    text-shadow: 1px 1px 2px #222;
    font-size:28px;
    text-wrap-style:balance;
    text-align:center;
    width: 100%;
}
.A b{
    font-size:28px;
}