/* General Body Styles */
body {
  margin: 0; /* Remove default margin */
  font-family: Arial, sans-serif; /* Font style for the body */
  background-color: #f4f4f4; /* Light background for the whole page */
  padding: 0;
  font-size: 18px;
}

* {
  box-sizing: border-box;
}

/* Header Styles */
header {
  background-color: #4caf50; /* Green background for header */
  color: white; /* White text color */
  padding: 15px; /* Padding for the header */
  text-align: center; /* Center text */
  margin-bottom: 20px;
}

/* Navigation Styles */
nav {
  margin-top: 10px; /* Space above navigation */
}

.btn-small {
  padding: 1rem;
  border-radius: 1rem;
  background: lightblue;
  transition: 0.2s;
  font-size: 15px;
  font-weight: 600;
}

.btn-small:hover {
  background: cyan;
  cursor: pointer;
}

nav a {
  margin: 0 15px; /* Space between navigation links */
  color: white; /* White text for navigation links */
  text-decoration: none; /* No underline for links */
}

p {
  line-height: 1.5;
}

ul {
  line-height: 1.5;
}

li {
  margin-bottom: 0.5rem;
}

/* Container Styles */
.container {
  padding: 20px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

/* Container Styles */
.w-medium {
  max-width: min(calc(100% - 30px), 1000px);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

h3 {
  margin: 5px 0 10px 0;
}

/* Section Heading Styles */
h2 {
  color: #333; /* Dark grey for section headings */
}

/* Blog Post Styles */
.post {
  background: white; /* White background for post content */
  padding: 20px; /* Padding for post content */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  margin-top: 20px; /* Space above posts */
}

/* Footer Styles */
footer {
  text-align: center; /* Center text in the footer */
  padding: 15px; /* Padding for footer */
  background-color: #333; /* Dark background for footer */
  color: white; /* White text in footer */
  position: relative; /* Footers will align to the bottom */
  margin-top: 20px; /* Space above footer */
}

.grid {
  display: grid;
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-4 {
  gap: 1rem;
}

.items-end {
  align-items: end;
}

.items-center {
  align-items: center;
}

.text-center {
  text-align: center;
}

/* Adjustments for Links */
a {
  text-decoration: none; /* No underline on links */
  color: #007bff; /* Link color */
}

a:hover {
  text-decoration: underline; /* Underline on hover */
}
