/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Background and Font Color */
body {
  background-color: #202124; /* Dark background */
  color: #e0e0e0; /* Light text for readability */
  font-family: 'Courier New', serif;
  line-height: 1.6;
  font-size: 16px;
  border-radius: 0px;
  padding: 1rem;
}

/* Link Styling */
a {
  color: #bb86fc; /* Light purple link color */
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover,
a:focus {
  color: #03dac6; /* Cyan color on hover/focus */
}

/* Heading Styles */
h1, h2, h3, h4, h5, h6 {
  color: #e0e0e0; /* Light color for headings */
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin-bottom: 0.5em;
}

h1 {
  font-family: 'Courier New', serif;
  font-size: 1.75rem;
}

h2 {
  font-family: 'Courier New', serif;
  font-size: 1.5rem;
}

h3 {
  font-family: 'Courier New', serif;
  font-size: 1.25rem;
}

/* Paragraphs */
p {
  margin-bottom: 1em;
  font-size: 1.1rem;
  line-height: 2;
}

/* Lists */
ul {
    padding-left: 2rem; /* Indent the list */
	margin-bottom: 1rem; /* Optional: Adds spacing between items */
	list-style-position: inside;
}

li {
    padding-left: 2rem; /* Indent the list */
	margin-bottom: 1rem; /* Optional: Adds spacing between items */
	list-style-position: inside;
}

/* Buttons */
button {
  background-color: #5c3257; /* Purple button */
  color: white;
  padding: 10px 30px;
  border: none;
  border-radius: 30px;
  font-size: 1rem;
  cursor: pointer;
  transition: background-color 1s ease;
}

button:hover,
button:focus {
  background-color: #ce6fc3; /* Darker purple on hover */
}

/* Navigation */
nav {
  background-color: #2d0f32; /* Slightly lighter dark background for the nav */
  padding: 0.5rem;
}

nav ul {
  display: flex;
  justify-content: center;
  gap: 20px;
}

nav ul li {
  list-style-type: none;
}

nav ul li a {
  color: #bb86fc;
  font-weight: bold;
  font-size: 1.2rem;
}

nav ul li a:hover {
  color: #03dac6;
}

/* Section and Container Styles */
.container {
  width: 80%;
  margin: 0 auto;
  padding: 20px;
}

section {
  margin-bottom: 40px;
  background-color: #1d1d1d; /* Slightly darker section background */
  border-radius: 10px;
  padding: 20px;
}

/* Footer */
footer {
  background-color: #2d0f32;
  padding: 20px;
  text-align: center;
  color: #888;
  font-size: 0.9rem;
}

footer a {
  color: #bb86fc;
}

footer a:hover {
  color: #03dac6;
}

/* Forms */
input, textarea {
  background-color: #333;
  color: #e0e0e0;
  border: 1px solid #444;
  padding: 10px;
  border-radius: 5px;
  font-size: 1rem;
  width: 100%;
  margin-bottom: 1em;
}

input:focus, textarea:focus {
  border-color: #6200ea; /* Purple focus outline */
  outline: none;
}

/* Media Queries for Responsiveness */
@media (max-width: 768px) {
  .container {
    width: 90%;
  }

  nav ul {
    flex-direction: column;
    align-items: center;
  }

  nav ul li {
    margin-bottom: 10px;
  }
}


/* The container for general content */
.general-content {
    max-width: 800px; /* Maximum width for your content */
    margin: 0 auto;   /* Center the content horizontally */
    padding: 15px;    /* Padding around the content */
    box-sizing: border-box; /* Include padding and border in the element's total width */
	border: 10px;
}
@media (max-width: 800px) {
    .general-content {
        padding: 15px; /* Reduce padding on small screens */
        max-width: 100%; /* Allow it to take up the full width on smaller screens */
    }
}

/* The container for your article content */
.article-content {
    max-width: 800px; /* Maximum width for your content */
    margin: 0 auto;   /* Center the content horizontally */
    padding: 20px;    /* Padding around the content */
    box-sizing: border-box; /* Include padding and border in the element's total width */
}

/* Optional: Make sure the content looks nice on smaller screens */
@media (max-width: 800px) {
    .article-content {
        padding: 15px; /* Reduce padding on small screens */
        max-width: 100%; /* Allow it to take up the full width on smaller screens */
    }
}
/*article image formatting*/
.article-content img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 1em auto;
}

/*profile picture formatting*/
#profile-pic {
	display: block;
	margin-left: auto;
	margin-right: auto;
	border-radius: 100%;
	max-width: 25%;
	height: auto;
}
.socials-block {
	padding: 15px; /* Reduce padding on small screens */
	align-items: center;
	justify-content: center;
	text-align: center;
	}