
.page-layout {
    display: flex;
    align-items: flex-start;
    padding-right: 3rem;
}

header {
        padding-top: 1rem;
				padding-left: 1rem;
				padding-right: 1rem;
        display: flex;
        justify-content: space-between;
        flex-wrap: nowrap;
        box-shadow: 4px 4px 20px;
        background-image: linear-gradient(to right, rgba(0, 255, 0, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 255, 0, 0.1) 1px, transparent 1px);
        background-size: 20px 20px;
				position:sticky;
				top: 0;
        /*background-color: #2c2c2c match the main body background*/
				background-color: #1e1e1e;
    }

.header-logo {
        display: flex;
        align-items: center;
				color: #00ff00
    }

.header-img {
        height: 50px;
        margin-right: 1rem;
        padding-bottom: 0.5rem;
    }

.header-logo h1 {
        font-weight: bold;
        font-size: 30pt;
        margin: 0;
        text-shadow: 0 0 5px #00ff00;
    }

header nav {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        align-items: center;
    }

header nav li {
        white-space: nowrap;
    }

header nav a {
        text-decoration: none;
        color: inherit;
        white-space: nowrap;
        /* border-radius: 5%;
				background-size: 5%;
				background-color:gray; */
        text-shadow: 0 0 5px #00ff00, 0 0 10px #00ff00;
    }

nav ul {
			margin: 0;
			list-style-type: none;
			display: flex;
			justify-content: right;
			gap: 1rem;
		}

body {
  margin: 0;
  color: #4af626;
  font-family: 'Courier New', Courier, monospace;
  background: #2c2c2c;
  position: relative;
  height: 100%;
}

p {
  padding-top: 1rem;
}
/*
main {
  padding: 1rem;
  margin-left: 15%;
  max-width: 60rem;
  min-width: 0;
  margin-right: 10%;
}
*/
.site-main {
    padding: 1rem;
    margin-left: 5rem;
    min-width: 0;
    flex: 1 1 auto;
    padding-right: 10 rem;
}

article {
  padding-right: 30px;
  padding-left: 0px;
}

h1 {
  font-size: 24pt;
  font-weight:bold;
  font-style:italic;
}

h2 {
  font-size: 20pt;
  font-weight: lighter;
}

ul.blog-list {
  padding-top: 1rem;
}
a {
  color: inherit;
  text-decoration: none;
}

.shop-nav {
    color: gold;
    text-shadow: 0 0px 5px gold;
}

.shop {
    border: 1px solid #ffbf00;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #131313;
    margin: 0.5%;
    padding: 0.5%;
    width: 30%;
    background:
    linear-gradient(90deg, rgba(0,255,170,0.12) 1px, transparent 1px),
    linear-gradient(rgba(0,255,170,0.12) 1px, transparent 1px),
    #07110d;
  background-size: 40px 40px;
  border: 1px solid rgba(0,255,170,0.25);
}

.shop-link {
    color: #ffb000;
}
.shop-link:hover {
    color:purple;
}
.socials {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  flex-direction: row;
  align-items: center;
  color: #ffbf00;
  .sociallink {
    border: 1px solid #ffbf00;
    border-radius: 5px;
    box-shadow: 3px 3px 5px #131313;
    margin: 0.5%;
    padding: 0.5%;
    width: 30%;
    min-height: 50px;
    justify-content: center;
    align-items: center;
    background-image: linear-gradient(to right, rgba(255, 191, 0, 0.1), 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 191, 0, 0.1), 1px, transparent 1px);
    background-size: 20px 20px;
    align-content: center;
  }
}
aside {
background-image: linear-gradient(to right, rgba(0, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(to bottom, rgba(0, 255, 255, 0.1) 1px, transparent 1px);
background-size: 20px 20px;
        /*box-shadow: 4px 4px 20px inset;*/
box-shadow: 3px 3px 3px inset #00b0ff;
color: #00b0ff;
display: flex;
align-items: flex-start;
flex-direction: column;
min-height: 45%;
border: 1px solid #00b0ff;
margin-top: 5rem;
width: 16rem;
padding: 5px;
justify-content: space-between;
		}
.branding {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: inherit;
}
.site-title {
font-weight: bold;
font-size: 30pt;
margin: 0;
text-shadow: 0 0px 5px #00ff00;
}
.news {
width: 13%;
top: 71px;
right: 0;
font-weight: 700;
font-size: 24pt;
text-shadow: 0 0 5px #31afe7;
			/*border-left: 1px black solid;*/
}

@media only screen and (max-width: 800px) {
    aside {
        display: none;
    }
}
.meeting-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(20rem, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
    width: 100%;
}
.meeting p {
    padding-bottom: 0rem;
    flex-direction: column;
    padding-left: 1%;
    min-width: 5rem;
}
.meeting h2 {
    padding-left: 1%;
}
.meeting {
    border: 1px solid #ffbb00;
    align-items: center;
    padding-left: 10px;
    background-image: linear-gradient(to right, rgba(255, 191, 0, 0.1), 1px, transparent 1px), linear-gradient(to bottom, rgba(255, 191, 0, 0.1), 1px, transparent 1px);
    background-size: 20px 20px;
    margin: 0.5%;
    border-radius: 5px;
}
