body {
    font-family:  "Open Sans";
    margin: auto;
    font-size: 14px;
    background-color: #F6F8F2;
    color: #333333;
    position: relative;
}

.body {
  display: flex;
  flex-direction: column;
  min-height: 99vh;
}

h1, h2, h3, h4 {
    padding: 0;
    margin: 0;
    font-weight: lighter;
}

h1 {
    font-size: 25px;
    line-height: 30px;
    text-align: center;
    margin: 20px auto;
}

h2 {
    font-size: 22px;
    line-height: 25px;
}

h3 {
    font-size: 18px;
    line-height: 22px;
}

h4 {
    font-size: 15px;
    line-height: 18px;
    font-style: italic;
}

a {
    text-decoration: none;
    color: #FDD835 !important;
}

/* Definition of small fonted text, example: footer */
.smoll {
    font-size: 12px !important;
    line-height: 14px;
}

/* Topbar header section */
.topbar {
    position: sticky;
    margin: 0;
    top: 0;
    width: 100%;
    box-shadow:0 .125rem .25rem rgba(255,255,255,0.075) !important;
}

.topbar-header {
    width: 200px;
}

/* Topbar menu section */
nav {
  width: 70%;
  background-color: #F6F8F2 !important;
  list-style: none;
  display: flex;
  margin: 0 auto;
  padding: 0;
}

nav a,
nav .menu,
.menu a {
  padding: 15px 10px;
  font-size: 15px;
  align-content: center;
  color: #333333;
}


/* Topbar - Social */
.social {
    justify-content: center;
    margin: 0.5em 0 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.social-icon a {
    padding: 8px;
    box-sizing: border-box;
    display:inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-size: 19px;
    transition: color 0.3s;
}

.social-icon img {
    width: 15px !important;
    height: 15px !important;
    border-radius: 50%;
}

/* Home page */
.events {
    width: 70%;
    margin: 5px auto;
}

.event {
    background-color: #fff;
    padding: 10px 0;
    margin-bottom: 15px;
}

.event h2{
    color:#FDD835;
}

.event div {
    margin-top: 5px;
}

.event .date, 
.event .location {
    font-size: 20px;
    line-height: 30px;
}

/* Posts */
main {
    width: 70%;
    margin: 30px auto 0 auto;
    flex: 1;
}

/* Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
    opacity: 1;
    transition: all 1s;
}

/* Post */
.post-blerp {
    padding: 1em;
    background-color: #fff;
    box-sizing: border-box;
    line-height: 100%;
    color:#333;
}

.post-blerp .date {
    color: #333;
    font-style: italic;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
}

/* Post - Tags */
.tags {
    text-align: right;
    margin-bottom: 0em;
}

.tags a {
    color: #6c6f72 !important;
    border-radius: 5px;
    padding: 0.25em;
}

.tags a:hover {
    color: #9fa5aa !important;
}

/* Events */
.event{
    display: flex; 
    justify-content: center;
    align-items: center;
    flex-direction: column;
}


/* Page - Members */
.member {
    display: flex !important;
    flex-wrap: nowrap !important;
    align-items: center;
    gap: 5px;
    margin-top: 50px;
    width: 500px;
    margin: 0 auto;
}
.member-wrapper{
    width: 500px;
    margin: 0 auto;
}

.member .page-img  img {
    border-radius: 250px;
    border: 2px solid #66BB6A; 
}

.member .page-img  img{
    width: 125px;
    height: auto;
    margin: auto;
    display: block;
}

.member .page-img {
    flex: 0 0 125px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member .page-text{
    flex: 0 0 370px; 
    border-radius: 5px;
    margin: 0 auto;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.member h1 {
    margin-bottom: 5px !important;
}

.member p {
    margin-top: 5px !important;
}


/* page settings */
.page{
    width: 75%;
    margin: 0 auto;
}

/* Table */
table {
  margin:10px 0;
  border-collapse: collapse;
  Width: 100%;
}

th, td {
  vertical-align: top;
  padding: 10px;
}

th {
  border-bottom: 1px solid #FDD835;
}

th:not(:last-child),
td:not(:last-child) {
  border-right: 1px solid #FDD835;
}

/* Footer */
.footer {
    color: #333333 !important;
    text-align: center;
    margin-top: 5px;
}

.footer a {
    color: #333333 !important;
}

@media (max-width: 1250px) {
    .topbar-avatar {
        display:none;
    }
}

@media (max-width: 900px) {
    nav {
        flex-direction: column;
    }

    .social,
    .menu{
        justify-content: center;
        margin: 0 auto;
    }
}