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

body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  background-color: #f5f5f5;
  color: #333;
  padding: 20px;
  font-weight: bold
}

a {
  text-decoration: none;
  color: #007bff;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3 {
  font-family: Arial, Helvetica, sans-serif;
  color: #222;
  font-weight: 600;
}

p {
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

/* Styling for the header */
header {
  background-color: #222;
  color: #fff;
  text-align: center;
  padding: 2rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1.1rem;
}

.header-langs {
  color:#ffffff;
  text-align: right;
  a {
    color: white;
  }
}

.header-title {
  color: #ffffff
}

/* Main content area */
main {
  margin-top: 2rem;
  padding: 20px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

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

/* Responsive design for mobile */
@media (max-width: 768px) {
  body {
    padding: 15px;
  }

  header h1 {
    font-size: 2rem;
  }

  header p {
    font-size: 1rem;
  }

  .container {
    padding: 0 10px;
  }

  .centered-content {
    margin-top: 20px;
  }
}

/* Footer */
footer {
  text-align: center;
  padding: 1.5rem;
  background-color: #222;
  color: #fff;
  margin-top: 2rem;
}

footer p {
  font-size: 0.9rem;
  margin: 0;
}

/* Adding space between sections */
section {
  margin-bottom: 2rem;
}

section h2 {
  margin-top: 0;
  font-size: 2rem;
  color: #444;
}

/* List styles */
ul, ol {
  margin-left: 20px;
}

ul li, ol li {
  margin-bottom: 0.8rem;
}

/* Blockquotes */
blockquote {
  background-color: #f9f9f9;
  border-left: 4px solid #007bff;
  padding: 1rem 1.5rem;
  font-style: italic;
  margin: 1.5rem 0;
}

blockquote p {
  margin-bottom: 0;
}

/* Buttons (if you have any buttons in your content) */
button {
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

button:hover {
  background-color: #0056b3;
}

