@charset "utf-8";
/* CSS Document */
/* COLOURS AND FONTS */
/* #7B297F; /* EI Dark Purple */
/* #BB64BF; /* EI Purple */
/* #464646; /* EI Grey */
/* #000000; /* Black */
/* #FBFEF9; /* Baby Powder */
/* #E30022; /* Cadmium Red */

/* Global Styles */

.facebook-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.posts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.post {
  margin: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.post-image {
  width: 100%;
  object-fit: cover;
  border-radius: 10px 10px 0 0;
}

/* Responsive design for mobile devices */
@media only screen and (max-width: 768px) {
  .facebook-feed {
    width: 100%;
    padding: 10px;
  }
  .post-image {
    height: 150px;
  }
}

/* Responsive design for tablets */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .facebook-feed {
    width: 80%;
    padding: 20px;
  }
  .post-image {
    height: 200px;
  }
}

/* Responsive design for desktops */
@media only screen and (min-width: 1025px) {
  .facebook-feed {
    width: 60%;
    padding: 30px;
  }
  .post-image {
    height: 250px;
  }
}