
html {
  color: #DDE7DD;
  background-color: #1A1A1A;
  font-family: 'Lucida Console', Monaco, monospace;
}

body {
  margin: 0;
  padding: 0;
}

header {
  text-align: center;
  padding: 2em 1em;
}

header h1 {
  font-size: 2.5em;
  color: #B6F2B2;
  margin: 0;
  text-shadow: 0 0 5px #7EB77F;
}

header p {
  margin: 0.5em 0;
}

nav {
  border-top: 1px solid #7EB77F;
  border-bottom: 1px solid #7EB77F;
  padding: 1em 0;
}

.link-box {
  display: flex;
  justify-content: center;
  gap: 2em;
  flex-wrap: wrap;
}

.link-box a {
  color: #A3D9A5;
  text-decoration: none;
  font-size: 1.1em;
}

.link-box a:hover {
  color: #B6F2B2;
}

.content {
  background-color: #222;
  max-width: 900px;
  margin: auto;
  padding: 2em;
}

section {
  margin-bottom: 2em;
}

h1 {
  font-size: 2.2em;
  color: #B6F2B2;
  text-shadow: 0 0 5px #7EB77F;
  margin-bottom: 0.5em;
}

h2 {
  font-size: 1.6em;
  color: #B6F2B2;
  text-shadow: 0 0 4px #7EB77F;
  margin-top: 1.5em;
}

h3 {
  font-size: 1.3em;
  color: #B6F2B2;
  margin-top: 1.2em;
}

p {
  color: #EAEAEA;
  line-height: 1.5em;
}

button {
  background-color: #1A1A1A;
  border: 4px solid #8CBA80;
  color: #B6F2B2;
  padding: 0.5em 1.5em;
  margin-top: 1em;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background-color: #2A2A2A;
  color: #C6F7C3;
  border-color: #A9D9A2;
}

hr {
  border: none;
  height: 2px;
  background-color: #8CBA80;
  margin: 2em 0;
}

footer {
  text-align: center;
  padding: 2em 1em;
  color: #aaa;
  font-style: italic;
}

footer span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
}

.articles {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5em;
}

.articles > div {
  flex: 1 1 calc(33.333% - 1em);
  background-color: #2A2A2A;
  padding: 1em;
  border-radius: 8px;
  min-width: 250px;
  box-sizing: border-box;
}

@media (max-width: 1000px) {
  .articles {
    flex-direction: column;
  }

  .articles > div {
    flex: 1 1 100%;
  }
  
  .content {
	  padding: 0em;
	  max-width: none;
  }

nav div{
		display: flex;
		flex-direction: column;
	}
	
	section {
		display: flex;
		width: 100%;
		flex-direction: column;
	}
	
	.blog-articles div {
		width: 100%;
		display: float;
	}	
header, .content, nav {
		float: left;
		width: 100%;
		text-align: center;
		display: flex;
		flex-direction: column;
	}
}


