/* Add these styles to your existing CSS */
body {
  font-size: 1.6rem;
  line-height: 1.6;
  background-color: #f7f7f7;
}

header {
  background-color: #222;
  color: white;
  padding: 1rem 0;
}

nav ul {
  display: flex;
  gap: 2rem;
  margin-left: auto;
}

nav ul li {
  font-size: 1.4rem;
  list-style: none;
}

nav i {
  font-size: 1.6rem;
}

main.post {
  background-color: #fff;
  margin: 2rem;
  padding: 2rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

main h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
}

main p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}


/* Base styles for desktop view */
.banner-section {
  display: flex;
  align-items: center;
  margin: 20px; /* Add margin for spacing */
}

.banner-content {
  flex: 1;
  padding-right: 20px; /* Add padding for spacing between content and image */
}

.banner-image {
  flex: 1; /* Allow the image to take up remaining space */
  max-width: 50%; /* Adjust the max-width as needed */
}

img {
  max-width: 50%;
}

/* Media query for mobile view */
@media (max-width: 768px) {
  .banner-section {
    flex-direction: column; /* Stack elements vertically on smaller screens */
  }
  
  .banner-content {
    padding-right: 0; /* Remove padding for spacing on mobile view */
  }

  .banner-image {
    max-width: 100%; /* Make the image full-width on mobile view */
  }
  img {
    max-width: 100%; /* Ensure images are not larger than their container on mobile */
  }
}


/* Add any additional styles you need for text elements (h1, h3, p) */




.container.center__display {
  background-color: #fff;
  margin: 2rem;
  padding: 2rem;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.comments__container .comment__card {
  background-color: #fff;
  border: 1px solid #eee;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 5px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
}

.comments__container .comment__card .nickname {
  font-weight: bold;
}

.comments__container .comment__card .comment__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.comment__bottom button {
  background-color: transparent;
  color: #888;
  font-weight: bold;
  border: none;
  cursor: pointer;
}

footer {
  background-color: #222;
  color: white;
  padding: 1rem 0;
  text-align: center;
}

footer ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

footer ul li {
  font-size: 1.6rem;
}

article p {
  margin: 15px 0;
}


/* Add other existing styles here */
