.profile-image img {
    border: 2px solid;
    color:rgba(1,81,58);
    border-radius: 80%;
    max-width: 180px; /* Set a decent maximum width */
    width: 100%; /* Ensure responsiveness */
    height: auto; /* Maintain aspect ratio */
}

.align-center {
    display: flex; /* Use flexbox for alignment */
    flex-direction: column; /* Stack items vertically */
    align-items: center; /* Horizontally center items */
    justify-content: center; /* Vertically center items */
    text-align: center; /* Center-align text */
}

.homepage-content p {
    margin-top: auto;
    margin-bottom: 1.5rem; /*spacing between paragraphs */
    font-size: large;
}


.course-image {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 6px solid #000; /* Meme-style thick border */
  box-shadow: 0 8px 24px rgba(0,0,0,0.25), 0 1.5px 0 #fff inset;
  border-radius: 12px;
  margin: 1.5rem auto;
  max-width: 100%;
  padding: 0.5rem;
  position: relative;
}

.course-image img {
  display: block;
  max-height: 200px;
  object-fit: contain;
  border-radius: 8px;
  filter: contrast(1.2) brightness(1.1);
}