.photo-card img {
  height: 200px;             
  width: 100%;
  object-fit: cover;         
  border-top-left-radius: 0.375rem; 
  border-top-right-radius: 0.375rem;
}

.text-justify {
    text-align: justify;
}


.glass-card {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}


body {
  background-image: url("imgs/forest_2_1600.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Desktop only */
@media (min-width: 1024px) {
  body {
    background-image: url("imgs/forest_2_2400.jpg");
    background-attachment: fixed;
  }
}


