/* styles.css */

/* Reset some default browser styles */
body, h1, p {
  margin: 0;
  padding: 0;
}

/* Apply a background color to the body */
body {
  background-color: #f5f5f5;
  font-family: Arial, sans-serif;
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Style the header with a background color and center text */
h1 {
  background-color: #007bff;
  color: #fff;
  text-align: center;
  padding: 20px;
}

/* Style the main content area */
.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Style links */
a {
  color: #007bff;
  text-decoration: none;
}

/* Style buttons */
button {
  background-color: #007bff;
  color: #fff;
  border: none;
  padding: 10px 20px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

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

/* Style headings */
h2 {
  margin-top: 20px;
}

/* Style paragraphs */
p {
  margin-bottom: 20px;
}

/* Style unordered lists */
ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Style list items */
li {
  margin-bottom: 10px;
}

/* Add responsive styles for smaller screens */
@media (max-width: 768px) {
  .container {
    padding: 10px;
  }
}

/* Style the left column */
.left-column {
  float: left; /* Float the left column to the left */
  width: 35%; /* Set the width of the left column */
  padding: 20px; /* Add some padding for spacing */
  background-color: #f0f0f0; /* Add a background color */
  box-sizing: border-box; /* Include padding and border in the width */
}

/* Style the right column */
.right-column {
  float: left; /* Float the right column to the left */
  width: 65%; /* Set the width of the right column */
  padding: 20px; /* Add some padding for spacing */
  background-color: #e0e0e0; /* Add a background color */
  box-sizing: border-box; /* Include padding and border in the width */
}

/* Clear floats after the columns */
.clear {
  clear: both;
}

/* Add additional styles as needed for your content */
