
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Poppins", sans-serif;
    
  }
  
  body {
    font-family: "Poppins", sans-serif;
    background-color: #f9f9f9;
  }
  
  h1{
    font-size: 36px;
    font-weight: 600;
  }

  p{
    font-size: 14px;
    font-weight: 300;
    line-height: 22px;
    padding: 0px;
    max-width: 90%;
  }


.container {
  width: 90%;
  max-width: 800px;
  margin: auto;
  padding: 20px;
}

.container img{
  width: 85%;
  border-radius: 10px;
}

.container h1 {
  text-align: left;
}

.post-form {
  background-color: #f9f9f9;
  padding: 15px;
  border: 1px solid #001f4d;
  border-radius: 8px;
  margin-bottom: 30px;
}

input[type="text"],
textarea {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border: 1px solid #001f4d;
  border-radius: 4px;
}

button {
  background-color: #001f4d;
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

button:hover {
  background-color: #003366;
}

.posts {
  margin-top: 20px;
}

.post {
  border-bottom: 1px solid #ccc;
  padding-bottom: 20px;
  margin-bottom: 20px;
}



/* Responsive styles */
@media (max-width: 768px) {

  
}